1

我正在创建一个应用程序,但出现错误,

在启动它崩溃并说

引起:java.lang.IllegalStateException:您需要在此活动中使用 Theme.AppCompat 主题(或后代)。

这是我的活动:

公共类 SplashScreen 扩展 AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_splash_screen);

    new Handler().postDelayed(new Runnable() {
        @Override
        public void run() {
            Intent intent = new Intent(SplashScreen.this, MainActivity.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
            intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION);
            startActivity(intent);
            finish();
        }
    }, 3000);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_splash_screen, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

}

 <!-- Base application theme. -->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">@color/primary</item>
    <item name="colorPrimaryDark">@color/primary_dark</item>
    <item name="colorAccent">@color/accent</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowAnimationStyle">@style/MyAnimation.Window</item>
    <item name="android:windowBackground">@color/background</item>

</style>

<!-- Application theme. -->
<style name="AppTheme1" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

这是我的清单:

 <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme1" >
    <activity
        android:name=".activity.SplashScreen"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

这是完整的错误日志:

致命异常:主要 10-16 15:56:26.135 25342-25342/com.social_infotech.renthouse E/AndroidRuntime: java.lang.RuntimeException: 无法启动活动 ComponentInfo{com.social_infotech.renthouse/com.social_infotech.renthouse.activity .SplashScreen}:java.lang.IllegalStateException:您需要在此活动中使用 Theme.AppCompat 主题(或后代)。10-16 15:56:26.135 25342-25342/com.social_infotech.renthouse E/AndroidRuntime:在 android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2211) 10-16 15:56:26.135 25342-25342/com。 social_infotech.renthouse E/AndroidRuntime:在 android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2261) 10-16 15:56:26.135 25342-25342/com.social_infotech.renthouse E/AndroidRuntime:在 android.app.ActivityThread。访问$600(ActivityThread.java: 调用(Method.java:525) 10-16 15:56:26.135 25342-25342/com.social_infotech.renthouse E/AndroidRuntime: 在 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737) 10-16 15:56:26.135 25342-25342/com.social_infotech.renthouse E/AndroidRuntime: 在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553) 10-16 15:56:26.135 25342- 25342/com.social_infotech.renthouse E/AndroidRuntime: at dalvik.system.NativeStart.main(Native Method) 10-16 15:56:26.135 25342-25342/com.social_infotech.renthouse E/AndroidRuntime: Caused by: java.lang .IllegalStateException:您需要在此活动中使用 Theme.AppCompat 主题(或后代)。10-16 15:56:26.135 25342-25342/com.social_infotech.renthouse E/AndroidRuntime:在 android.support.v7.app.AppCompatDelegateImplBase。

4

5 回答 5

0

正如我所说,有些事情没有加起来。

您似乎正在使用不同的主题:

在清单中你有

@style/AppTheme1

而样式文件包含

@style/AppTheme
于 2015-10-16T10:37:27.003 回答
0

请参考这个线程

编辑:上述线程的一些答案可能会帮助您解决这个问题。我将列出一个摘要:

  1. molokoka的回答,为了在您的活动或应用程序中添加 ActionBarCompat,应在 AndroidManifest.xml 中使用 @style/Theme.AppCompat 主题,如下所示

<activity ... android:theme="@style/Theme.AppCompat" />

molokoka 还指出,通常您需要自定义 ActionBar。再次,请按照他的回答了解详情。

  1. tyczj也提出了一个很好的观点: 检查并确保您没有另一个引用 theme.styled 并且不使用 AppCompat 主题的值文件夹

values-v11文件夹。

旁注:对不起,由于声誉低,我无法添加评论。这就是我放置答案的原因。

于 2015-10-16T14:35:56.183 回答
0

对于 noActionBar 活动:

样式.xml

<style name="AppThemeNoActionBar" parent="Theme.AppCompat.Light.NoActionBar">

</style>

AndroidManifest.xml

<activity
   android:name=".SplashScreenActivity"
   android:theme="@style/AppThemeNoActionBar" >
</activity>

闪屏.java

import android.support.v7.app.AppCompatActivity;
public class SplashscreenActivity extends AppCompatActivity {
   @Override
   protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_splashscreen);
   }
}
于 2015-10-16T10:33:37.703 回答
0

只需将您的以下代码复制到您的values-21 >>> Styles.xml 然后清理您的项目并尝试运行。

<style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="colorPrimary">@color/primary</item>
    <item name="colorPrimaryDark">@color/primary_dark</item>
    <item name="colorAccent">@color/accent</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowAnimationStyle">@style/MyAnimation.Window</item>
    <item name="android:windowBackground">@color/background</item>

</style>
  <!-- Application theme. -->
<style name="AppTheme1" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
于 2015-10-16T10:43:57.400 回答
0

使用 FragmentActivity 或 Activity 扩展您的活动因为您使用 NoAcionBar 作为主题。

于 2015-10-16T10:26:13.290 回答