User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T05:12:36Zhttp://stackoverflow.com/feeds/user/24590http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview2Placing Zoom Controls in a MapViewjasonhudgins2008-11-04T21:30:22Z2009-02-27T11:45:14Z
<p>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 via setGravity(). Can someone enlighten me as to what I'm missing?</p>
<p>zoomView = (LinearLayout) mapView.getZoomControls();</p>
<p>zoomView.setLayoutParams(new ViewGroup.LayoutParams
(ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT)); </p>
<p>zoomView.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL);
mapView.addView(zoomView);</p>
<p>These views/layouts are all constructed programatically, there is no layout file to tweak.</p>
http://stackoverflow.com/questions/541966/android-how-do-i-do-a-lazy-load-of-images-in-listview/543018#5430182Answer by jasonhudgins for Android - How do I do a lazy load of images in ListViewjasonhudgins2009-02-12T20:07:14Z2009-02-12T20:07:14Z<p>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 updates the view for the list item. </p>
<p>This method doesn't work very well when you're recycling views however.</p>
http://stackoverflow.com/questions/433392/how-do-i-use-prepared-statements-in-sqlite-in-android/436162#4361625Answer by jasonhudgins for How do I use prepared statements in SQlite in Android?jasonhudgins2009-01-12T17:12:21Z2009-01-12T17:12:21Z<p>I use prepared statements in Android all the time, it's quite simple :</p>
<pre><code>SQLiteDatabase db = dbHelper.getWritableDatabase();
SQLiteStatement stmt = db.compileStatement("SELECT * FROM Country WHERE code = ?");
stmt.bindString(1, "US");
stmt.execute();
</code></pre>
http://stackoverflow.com/questions/297586/how-to-call-web-service-with-android/436137#4361372Answer by jasonhudgins for How to call web service with Androidjasonhudgins2009-01-12T17:04:32Z2009-01-12T17:04:32Z<p>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's what I would suggest. Android comes with a SAX parser, and it's fairly trivial to use. If you are absolutely required to handle/parse SOAP on a mobile device then I feel sorry for you, the best advice I can offer is just not to use SOAP.</p>
http://stackoverflow.com/questions/257514/android-access-child-views-from-a-listview/340691#3406910Answer by jasonhudgins for Android: Access child views from a ListViewjasonhudgins2008-12-04T14:08:27Z2008-12-04T14:08:27Z<p>This assumes you know the position of the element in the ListView :</p>
<pre><code> View element = listView.getListAdapter().getView(position, null, null);
</code></pre>
<p>Then you should be able to call getLeft() and getTop() to determine the elements on screen position.</p>
http://stackoverflow.com/questions/288044/how-can-i-create-icons-for-menu-items-in-androids-listview/339021#3390214Answer by jasonhudgins for How can I create icons for menu items in Android's ListView?jasonhudgins2008-12-03T22:46:12Z2008-12-03T22:46:12Z<p>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 mentioned. From there you can inflate a layout containing an ImageView, get a reference to it using findViewById, and set the image to whatever drawable you've added into your resources.</p>
<pre><code>public View getView(int position, View convertView, ViewGroup parent) {
View row = inflater.inflate(R.layout.menu_row, null);
ImageView icon = (ImageView) row.findViewById(R.id.icon);
icon.setImageResource(..your drawable's id...);
return view;
}
</code></pre>
http://stackoverflow.com/questions/263507/placing-zoom-controls-in-a-mapview/325159#3251591Answer by jasonhudgins for Placing Zoom Controls in a MapViewjasonhudgins2008-11-28T06:32:53Z2008-11-28T06:32:53Z<p>Reto : thanks for your reply, but the idea was to do it <em>without</em> using XML layouts.</p>
<p>I eventually worked out the problem. Because a MapView is a subclass of ViewGroup, you can easily add child views (like the zoom controls). All you need is a MapView.LayoutParams instance and you're good to go. I did something like this (puts zoom controls in the bottom center of the mapview).</p>
<pre><code> // layout to insert zoomcontrols at the bottom center of a mapview
MapView.LayoutParams params = MapView.LayoutParams(
LayoutParams.WRAP_CONTENT,
LayoutParams.WRAP_CONTENT,
mapViewWidth / 2, mapViewHeight,
MapView.LayoutParams.BOTTOM_CENTER);
// add zoom controls
mapView.addView(mapView.getZoomControls(), params);
</code></pre>