簡體   English   中英

無法啟動活動ComponentInfo:膨脹類android.support.design.widget.CoordinatorLayout時出錯

[英]Unable to start activity ComponentInfo: Error inflating class android.support.design.widget.CoordinatorLayout

我遇到此錯誤,請您能幫我。

Unable to start activity ComponentInfo
{com.kaniar.tappy_defender/com.kaniar.tappy_defender.MainActivity}: 
android.view.InflateException: 
Binary XML file line #2: 
Error inflating class android.support.design.widget.CoordinatorLayout

MainActivity.java

package com.kaniar.tappy_defender;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends Activity implements View.OnClickListener {

// This is the entry point of the game
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Set the UI layout as the view
    setContentView(R.layout.activity_main);

    // Get a reference to the playButton in the layout
    final Button playButton = (Button)findViewById(R.id.playButton);

    // Listen for clicks
    playButton.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    // Must be the Play button
    // Create a new Intent object
    Intent intent = new Intent(this, GameActivity.class);

    // Start the GameActivity class via the Intent
    startActivity(intent);

    // Now shut this activity down
    finish();
}
}

XML文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout   xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.kaniar.tappy_defender.MainActivity"
android:background="@drawable/background">

<include layout="@layout/content_main" />

</android.support.design.widget.CoordinatorLayout>

LogCat輸出

02-11 18:24:07.980 21999-21999/com.kaniar.tappy_defender E/AndroidRuntime: FATAL EXCEPTION: main
                                                                           Process: com.kaniar.tappy_defender, PID: 21999
                                                                       java.lang.RuntimeException: Unable to start activity ComponentInfo{com.kaniar.tappy_defender/com.kaniar.tappy_defender.MainActivity}: android.view.InflateException: Binary XML file line #2: Error inflating class android.support.design.widget.CoordinatorLayout
                                                                           at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2377)
                                                                           at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2429)
                                                                           at android.app.ActivityThread.access$800(ActivityThread.java:151)
                                                                           at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1342)
                                                                           at android.os.Handler.dispatchMessage(Handler.java:110)
                                                                           at android.os.Looper.loop(Looper.java:193)
                                                                           at android.app.ActivityThread.main(ActivityThread.java:5333)
                                                                           at java.lang.reflect.Method.invokeNative(Native Method)
                                                                           at java.lang.reflect.Method.invoke(Method.java:515)
                                                                           at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:824)
                                                                           at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:640)
                                                                           at dalvik.system.NativeStart.main(Native Method)
                                                                        Caused by: android.view.InflateException: Binary XML file line #2: Error inflating class android.support.design.widget.CoordinatorLayout
                                                                           at android.view.LayoutInflater.createView(LayoutInflater.java:620)
                                                                           at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:696)
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:469)
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:397)
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:353)
                                                                           at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:341)
                                                                           at android.app.Activity.setContentView(Activity.java:1948)
                                                                           at com.kaniar.tappy_defender.MainActivity.onCreate(MainActivity.java:17)
                                                                           at android.app.Activity.performCreate(Activity.java:5343)
                                                                           at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1088)
                                                                           at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2331)
                                                                           at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2429) 
                                                                           at android.app.ActivityThread.access$800(ActivityThread.java:151) 
                                                                           at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1342) 
                                                                           at android.os.Handler.dispatchMessage(Handler.java:110) 
                                                                           at android.os.Looper.loop(Looper.java:193) 
                                                                           at android.app.ActivityThread.main(ActivityThread.java:5333) 
                                                                           at java.lang.reflect.Method.invokeNative(Native Method) 
                                                                           at java.lang.reflect.Method.invoke(Method.java:515) 
                                                                           at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:824) 
                                                                           at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:640) 
                                                                           at dalvik.system.NativeStart.main(Native Method) 
                                                                        Caused by: java.lang.reflect.InvocationTargetException
                                                                           at java.lang.reflect.Constructor.constructNative(Native Method)
                                                                           at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
                                                                           at android.view.LayoutInflater.createView(LayoutInflater.java:594)
                                                                           at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:696) 
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:469) 
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:397) 
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:353) 
                                                                           at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:341) 
                                                                           at android.app.Activity.setContentView(Activity.java:1948) 
                                                                           at com.kaniar.tappy_defender.MainActivity.onCreate(MainActivity.java:17) 
                                                                           at android.app.Activity.performCreate(Activity.java:5343) 
                                                                           at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1088) 
                                                                           at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2331) 
                                                                           at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2429) 
                                                                           at android.app.ActivityThread.access$800(ActivityThread.java:151) 
                                                                           at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1342) 
                                                                           at android.os.Handler.dispatchMessage(Handler.java:110) 
                                                                           at android.os.Looper.loop(Looper.java:193) 
                                                                           at android.app.ActivityThread.main(ActivityThread.java:5333) 
                                                                           at java.lang.reflect.Method.invokeNative(Native Method) 
                                                                           at java.lang.reflect.Method.invoke(Method.java:515) 
                                                                           at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:824) 
                                                                           at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:640) 
                                                                           at dalvik.system.NativeStart.main(Native Method) 
                                                                        Caused by: java.lang.IllegalArgumentException: You need to use a Theme.AppCompat theme (or descendant) with the design library.
                                                                           at android.support.design.widget.ThemeUtils.checkAppCompatTheme(ThemeUtils.java:34)
                                                                           at android.support.design.widget.CoordinatorLayout.<init>(CoordinatorLayout.java:178)
                                                                           at android.support.design.widget.CoordinatorLayout.<init>(CoordinatorLayout.java:172)
                                                                           at java.lang.reflect.Constructor.constructNative(Native Method) 
                                                                           at java.lang.reflect.Constructor.newInstance(Constructor.java:423) 
                                                                           at android.view.LayoutInflater.createView(LayoutInflater.java:594) 
                                                                           at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:696) 
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:469) 
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:397) 
                                                                           at android.view.LayoutInflater.inflate(LayoutInflater.java:353) 
                                                                           at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:341) 
                                                                           at android.app.Activity.setContentView(Activity.java:1948) 
                                                                           at com.kaniar.tappy_defender.MainActivity.onCreate(MainActivity.java:17) 
                                                                           at android.app.Activity.performCreate(Activity.java:5343) 
                                                                           at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1088) 
                                                                           at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2331) 
                                                                           at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2429) 
                                                                           at android.app.ActivityThread.access$800(ActivityThread.java:151) 
                                                                           at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1342) 
                                                                           at android.os.Handler.dispatchMessage(Handler.java:110) 
                                                                           at android.os.Looper.loop(Looper.java:193) 
                                                                           at android.app.ActivityThread.main(ActivityThread.java:5333) 
                                                                           at java.lang.reflect.Method.invokeNative(Native Method) 
                                                                           at java.lang.reflect.Method.invoke(Method.java:515)

我真的不知道會發生什么,我可以構建項目,但是當我在手機或模擬器上運行應用程序時,我明白了! 如果有人知道解決方案,那就太好了!

嘗試在MainActivity擴展中將Activity更改為AppCompatAvtivity。

如果仍然無法使用,請將父主題也更改為AppTheme

<style name="Base.AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

我找到了解決方案,它是在styles-v21.xml中創建以下主題(如果導入了示例文件,它應該已經存在,但是如果不存在,請創建它):

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
</style

>並在清單的主要活動部分中按如下方式調用它(刪除我之前突出顯示的行並將其放在其位置):

android:theme="@style/AppTheme.NoActionBar">

硫磺應該解決這個問題。

InflateException錯誤,導致類android.support.design.widget.CoordinatorLayout膨脹

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM