使用intellij构建android应用程序无法找到主题AppCompat.Light

时间:2014-06-17 12:41:37

标签: android intellij-idea

现在我正在尝试使用此tutorial构建此Android应用程序。但是当我添加下面的示例代码时,我收到了一个错误。

<activity android:name="MyActivity"
      android:label="@string/app_name"
      android:theme="@style/Theme.AppCompat.Light">

错误是:

AndroidManifest.xml:10: error: Error: No resource found that matches the given
name (at 'theme' with value '@style/Theme.AppCompat.Light').

我在互联网上尝试了很多帖子,但我没有找到关于使用intellij想法的解决方案。

并且我的所有代码都在这里,但我认为这不是问题,它必须是我忘记使用想法配置的东西:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.example.androidtwo"
          android:versionCode="1"
          android:versionName="1.0">
    <uses-sdk android:minSdkVersion="7"  android:targetSdkVersion="18" />

    <application android:label="@string/app_name"
                 android:icon="@drawable/ic_launcher">
        <activity android:name="MyActivity"
                  android:label="@string/app_name"
                  android:theme="@style/Theme.AppCompat.Light">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
    </application>
</manifest>

活性

package com.example.androidtwo;

import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;

public class MyActivity extends ActionBarActivity {
    /**
     * Called when the activity is first created.
     */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

1 个答案:

答案 0 :(得分:2)

你的build.gradle必须包含这一行:

compile 'com.android.support:appcompat-v7:19.1.0'