我创建了一个自定义主题,删除它然后无法从AndroidManifest.xml中删除它

时间:2016-01-20 09:52:06

标签: android xml android-manifest

所以我尝试为我的preference_category文件创建一个自定义主题,但后来决定删除它。我从styles.xml中删除了一个主题,从AndroidManifest.xml中删除了该字符串。当我构建项目时,它总是“从死里”回来。每次我删除它,它都在恢复。字符串android:theme =“@ style / Theme.Custom”就像从未被删除过!我得到的错误是

  

错误:(51,28)找不到与给定名称匹配的资源(在'theme'处,值为'@ style / Theme.Custom')。   错误:任务':app:processDebugResources'的执行失败。   com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令'/Users/lisa/Library/Android/sdk/build-tools/22.0.1/aapt''结束于非零退出值1   信息:BUILD FAILED

不仅如此。我的ManifestFile:

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

<uses-sdk
    android:minSdkVersion="14"
    android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_PROFILE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission        android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE" />

<supports-screens
    android:anyDensity="true"
    android:largeScreens="true"
    android:normalScreens="true"
    android:smallScreens="true"
    android:xlargeScreens="true" />

<application
    android:allowBackup="true"
    android:icon="@drawable/notif"
    android:label="Tenderplan"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.tenderplan.activities.MainActivity"
        android:label="Tenderplan"
        android:theme="@style/AppTheme.NoActionBar" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.example.tenderplan.activities.LoginActivity"
        android:theme="@style/AppTheme" />
    <activity
        android:name="com.example.tenderplan.activities.ElementActivity"
        android:theme="@style/AppTheme" />
    <activity
        android:name="com.example.tenderplan.activities.SettingsActivity"
        android:label="@string/title_activity_settings"
        android:theme="@style/Theme.Custom" />
    <activity android:name="com.example.tenderplan.activities.EditActivity" />
    <activity android:name="com.example.tenderplan.activities.AddKeyActivity" />
    <activity android:name="com.example.tenderplan.activities.AnalyticsActivity" />
    <activity android:name="com.example.tenderplan.activities.AnalyticsCPActivity" />
</application>

在Manifest中,这些字符串为红色:

  1. http://schemas.android.com/apk/res/android"
  2. android:versionCode="1" android:versionName="1.0" >
  3. 支持屏
  4. android:allowBackup="true" android:icon="@drawable/notif"
  5. android:theme="@style/AppTheme" 和许多其他主题。
  6. 这是我的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" />
    

    此外,在活动中找不到我的import com.example.tenderplan.R;

    你可以帮我找到合适的答案吗?

2 个答案:

答案 0 :(得分:0)

您的SettingsActivity仍然设置了主题Theme.Custom,这在styles.xml中不再存在。从android:theme="@style/Theme.Custom"删除行AndroidManifest.xml

答案 1 :(得分:0)

我想在发生类似事情之后我找到了答案。您需要从3个位置删除自定义主题:

  1. Android清单文件
  2. Values \ Styles.xml文件
  3. Your_Project \应用\建立\中间体\ RES \合并\调试\值\ values.xml
  4. 从所有这些地方删除所有出现的自定义主题后,重建gradle。

    这对我有用,看看