I have 2 TextViews in my layout with id's (matricula, nome) and i need get this values from this json request.
I have difficults in both make json request as in get values, here is an example how would i do in php and jquery:
PHP
$alunos = json_decode("let's pretend json data is here");
echo "Matricula: " . $alunos['Aluno']['matricula'];
echo "Nome: " . $alunos['Aluno']['nome'];
Jquery
var alunos = $.parseJSON("let's pretend json data is here");
console.log("Matricula: " + alunos.aluno.matricula);
console.log("Nome: " + alunos.aluno.nome);
To help:
Aluno = Student
Matricula = Student id
Nome = name
I read some answers here about parsing json but i admit it, its hard to understand.
It is also easy in Java (I left out all error handling to focus on the main flow, please add that yourself):
For details please see the documentation.