我想在我的应用程序中实现全屏。我找到了这个代码:
public class FullScreen extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.main);
}
}
或通过AndroidManifest.xml
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
没有人去。当我启动它时,两者都会使我的应用程序崩溃错误是“遗憾的是应用程序已停止”。有谁知道这个问题?
答案 0 :(得分:2)
尝试使用此代码将您的活动设为FULL_SCREEN
在res \ values \ add
中查找find:styles.xml
<style name="NoTitle" parent="AppBaseTheme">
<item name="android:windowNoTitle">true</item>
</style>
打开文件清单 寻找申请
添加
android:theme="@style/NoTitle">
看起来像:
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/NoTitle" >
答案 1 :(得分:0)
将你的代码放在super.onCreate(savedInstanceState)
之前答案 2 :(得分:0)
这对我有用。
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
</style>
&#13;