[android-developers] Re: itemizedOverlay, onTap

2011-09-13 Thread android 4u
While creating the object of your class helloItemizedOverlay you are supposed to pass the current context. Use the constructor helloItemizedOverlay(Drawable defaultMarker, Context context). When you do this your context will not be null. This constructor in turn is calling the super constructor. T

[android-developers] Re: How can I can open local files in the default Android browser?

2011-09-13 Thread android 4u
Read the local file from assets or raw folder into a string variable and then use web view to load it in a default web kit browser as shown below: String summary = "You scored 192 points."; webview.loadData(summary, "text/html", "utf-8"); On Sep 13, 3:47 pm, Monzurul Islam Shamim wrote: > use

[android-developers] Google Android Training- Batch starting Sep25,2011

2011-09-12 Thread android 4u
Follow us on Twitter- androidhub4u. Subscribe to our blog at- http://androidhub.wordpress.com/ This Android course is a interactive, hands-on training which provides you a complete overview of the Android platform and how to make the most of your application development. The curriculum is develope

[android-developers] Re: How can I center an ImageView and TextView together?

2011-09-12 Thread android 4u
Hi Dan, Not sure though, but would the following help you: http://schemas.android.com/apk/res/ android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> strin