2
votes
5answers
3k views
Placing Zoom Controls in a MapView
I'm trying to get the zoom controls to show up in a mapview, the following code almost works, but the zoom controls appear in the top left of the mapview, not the bottom center like I'm specifiying …
1
vote
Placing Zoom Controls in a MapView
Reto : thanks for your reply, but the idea was to do it without using XML layouts.
I eventually worked out the problem. Because a MapView is a subclass of ViewGroup, you can easil …
4
votes
How can I create icons for menu items in Android’s ListView?
What I typically do for a ListView is to implement my own Adapter by extending the handy BaseAdapter class. One of the abstract methods you'll implement will be getView() as the previous poster me …
0
votes
Android: Access child views from a ListView
This assumes you know the position of the element in the ListView :
View element = listView.getListAdapter().getView(position, null, null);
Then you should be ab …
2
votes
How to call web service with Android
SOAP is an ill-suited technology for use on Android (or mobile devices in general) because of the processing/parsing overhead that's required. A REST services is a lighter weight solution and that …
5
votes
How do I use prepared statements in SQlite in Android?
I use prepared statements in Android all the time, it's quite simple :
SQLiteDatabase db = dbHelper.getWritableDatabase();
SQLiteStatement stmt = db.compileStatement("SELECT * FROM …
1
vote
Android - How do I do a lazy load of images in ListView
The way I do it is by launching a thread to download the images in the background and hand it a callback for each list item. When an image is finished downloading it calls the callback which updat …
