Making an fullscreen Activity in Android
We moved. Please visit this link for this post.
There are 2 ways how to make an fullscreen activity. One from code other from AndroidManifest.xml. I am going to show both of them.
From code:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
...
At first we hide the title bar, then we make an activity fullscreen.
From AndroidManifest.xml:
<activity android:name=" " ... android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
under <activity>.
Both these variants make an fullscreen activity.
Categories: Android, Android how to
Comments (0)
Trackbacks (0)
Leave a comment
Trackback