验证Android Xml文件中的资源引用

时间:2018-09-09 21:27:22

标签: android android-manifest

在AndroidManifest.xml文件中,它显示此错误。

错误:验证Android xml文件中的资源引用

<activity android:name=".view.ListUsersActivity"
        android:theme="@style/AppTheme.NoActionBar">

        <intent-filter>
            <action android:name="com.redvelvet.abhi.github.view.ListUsersActivity" />

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

我已经尝试了stackOverflow上提到的一些解决方案,但是没有解决。

styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
    <!-- 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.Light" />

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

0 个答案:

没有答案