无法在android studio

时间:2016-01-05 04:43:27

标签: android themes rendering project

我是Android开发的新手,正在开发溢出菜单。我不得不将我的项目的主题更改为holo.light以使操作栏可见,但是当我尝试这样做时会发生错误; enter image description here

经过大量的互联网搜索,我意识到只有以AppCompat.something.something开头的主题才能正常运行。所有其余的都没有呈现。

请帮忙。

styles.xml

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>



    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

</resources>

的AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.naveenjain.test7">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

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

</manifest>

1 个答案:

答案 0 :(得分:0)

您收到此错误是因为android studio无法为此布局呈现正确的主题。 这是android studio问题。如果您运行此应用程序,它将成功运行。解决这个问题

  1. 打开布局时,在android studio中选择“设计”选项卡。 2.从android studio中的工具栏区域选择主题选项。
  2. 将出现一个窗口,选择项目主题。
  3. 您的所有项目主题都显示在右侧部分。
  4. 选择合适的主题。
  5. 这些步骤将解决此错误。