paul zazzarino wrote:
> You can eliminate the title bar and indicator bar by doing the following
> on startup, but you would have to draw your own...
> 
> @Override
> public void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> requestWindowFeature(Window.FEATURE_NO_TITLE);
> requestWindowFeature(Window.FEATURE_PROGRESS);
> setContentView(R.layout.main);

Or, use android:theme="@android:style/Theme.NoTitleBar.Fullscreen" as an
attribute on the <activity> element in your manifest.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android 2.x Programming Books: http://commonsware.com/books

-- 
You received this message because you are subscribed to the Google Groups 
"Android Discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/android-discuss?hl=en.

Reply via email to