全屏Android“不幸的应用程序停止了”为什么?

时间:2013-05-23 07:48:16

标签: android crash android-fullscreen

我想在我的应用程序中实现全屏。我找到了这个代码:

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"

没有人去。当我启动它时,两者都会使我的应用程序崩溃错误是“遗憾的是应用程序已停止”。有谁知道这个问题?

3 个答案:

答案 0 :(得分:2)

尝试使用此代码将您的活动设为FULL_SCREEN

  1. 在res \ values \ add

    中查找find:styles.xml

    <style name="NoTitle" parent="AppBaseTheme">
        <item name="android:windowNoTitle">true</item>
    </style>    
    

  2. 打开文件清单 寻找申请

  3. 添加

    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)

这对我有用。

&#13;
&#13;
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
</style>
&#13;
&#13;
&#13;