Posts by haroldolivieri • 216 points
6 posts
-
0
votes2
answers330
viewsA: Quick Scroll Bar in alphabetical order
I found this example on the Android Developers page, and in the right sidebar you can download the source of a perfect example! Retrieving a List of Contacts This Lesson shows you how to Retrieve a…
-
2
votes2
answers3071
viewsA: Pass information from a selected item in the list to Edittext
Boy, it is not advised to work with Object Arraylist to mount listViews on android. To run smoother and more stable, the most suitable is to use String Hashmaps with value key. As for your project,…
-
2
votes1
answer971
viewsA: How to recover a soapObject from a return from the webservice
Using ksoap2 v2.5.8 library, I do so: public static String conectWs(String URL, String NAMESPACE, String METHOD_NAME, String strDataXmt, String param) throws Exception{ HttpTransportSE…
-
2
votes1
answer6182
viewsA: Responsive design for Android app
Boy, I think you’re lost with the basics of Android programming. Responsive is a term commonly used for building websites and webapps, for when it adapts to different screen sizes. In mobile…
-
2
votes3
answers3192
viewsA: Why so many folders with the name "Drawable" on Android?
Dude, as for images, you really have to generate several different sizes, if you want the app to work well in different Vices, using several drawable folders. But I have two tips for you, which are…
-
4
votes2
answers330
viewsQ: Quick Scroll Bar in alphabetical order
I’ve already found some examples with a custom view of a list with a alphabetical quick scroll bar, but I didn’t really find a scroll bar that really looks like the one from my Kitkat contact list.…