手机全屏幕简单实现

去掉标题栏:

 <activity android:name=".FirstActivity"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar"
                  >


去掉标题栏和通知栏

<activity android:name=".FirstActivity"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
                  >


如果想整个程序都是全屏的,只要把

android:theme="@android:style/Theme.NoTitleBar.Fullscreen //放到<application>中

你可能感兴趣的:(android,Activity)