Posts by bruno eleodoro • 76 points
3 posts
-
1
votes2
answers167
viewsA: Recover Spinner’s position to use in another Spinner from another Acitivity
Try to get the position of the item as follows: sp_card.setSelection(sp_card.getAdapter().indexOf(String.valueOf(idCartao)));
-
3
votes3
answers308
viewsA: Data Json on android
Your code to parse in JSON won’t work, because the JSON content is a vector, so Oce needs to convert first to Jsonarray, then take the Array object, and finally get the information. Replace the…
-
2
votes3
answers308
viewsA: Data Json on android
Hello , Try to put this class at the end of Mainactivity.java, at the last line paste this code and test to see if it was: class GET extends AsyncTask<String,String,String> { Activity…