From 65de0e6a266bb4d176194d21ee59661066134012 Mon Sep 17 00:00:00 2001
From: Elliott Hughes
You should also take a look at the ApiDemos application and the other sample
-applications included in the SDK, in the <sdk>/samples/
+applications included in the SDK, in the <sdk>/samples/
folder in the SDK.
Finally, a great way to started with Android development in Eclipse is to @@ -281,6 +281,15 @@ protected void onActivityResult(int requestCode, int resultCode, Intent data){
//Hide the title bar requestWindowFeature(Window.FEATURE_NO_TITLE);+
A better way to achieve the same end is to specify a theme in your Android +Manifest file:
+<application android:icon="@drawable/icon" android:theme="@android:style/Theme.NoTitleBar"> ++
This is preferable because it tells the system not to show a title bar while
+your application is starting up. With the explicit method call, your application
+will have a title bar visible to the user until onCreate runs.
(Note that this can be applied to either the <application>
+tag or to individual <activity> tags.)
If you need to refer to your host computer's localhost, such as when you