手机全屏幕简略实现

手机全屏幕简单实现去掉标题栏: activity android:name.FirstActivityandroid:label@string/app_nam

手机全屏幕简单实现
去掉标题栏:

 <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>中