Tuesday, December 11, 2012

How to make an Activity fullscreen??

There are two ways to make an activity fullscreen,

In your OnCreate method in the activity class,


getWindow().addFlags(LayoutParams.FLAG_FULLSCREEN);

From AndroidManifest.xml:

<activity android:name=" "

---

----

android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />




No comments:

Post a Comment