Posts by xanexpt • 121 points
4 posts
-
0
votes1
answer161
viewsA: Spinner - Line break in list
There is thus no direct option for multi metering without extending the spinner and override and catch certain views. I think the easiest thing is to create an xml with the layout you want to…
-
1
votes1
answer657
viewsA: return function json object
A very good library to parse is Gson, it is a google library, https://github.com/google/gson example to move from json to object (object name Response): Gson gson = new Gson(); Response response =…
-
0
votes2
answers784
viewsA: Listview with a button at the bottom of the android studio list
you have to create a relative layout, and then you put the button down, then put the list, but with the tag above, so first enter the butao and then the list that has to be on top of the button…
-
1
votes2
answers215
viewsA: Save data from a web service to a global variable on Android
You can create a Singleton class and store the data there, I have a class of this kind here https://github.com/xanexpt/flickr/blob/master/app/src/main/java/com/badjoras/baamflickr/AppSingleton.java…