我正在为电视构建android应用,并且将theme设置为Theme.Leanback是在android-support-v17-leanback.jar支持库中定义的。
但是当我构建我的应用程序时,出现错误提示
错误:找不到与给定名称(在'theme'处,值为'@ style/Theme.Leanback')匹配的资源
我添加了android-support-v17-leanback库来构建路径,但仍然遇到相同的错误。

甚至通过导入到Eclipse已经构建了android-support-v17-leanback库,我在项目的R.txt文件中看到了资源ID,并且已经将此构建的项目添加到我的应用程序中,但仍然存在相同的错误。

我想念的所有东西吗?请提出一些解决上述问题的想法。

谢谢,
解说员

最佳答案

在build.gradle的“依赖关系”部分中添加appcompat-v7和leanback

compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:leanback-v17:23.1.1'

在style.xml中
<style name="AppTheme" parent="@style/Theme.Leanback">

引用:https://developer.android.com/tools/support-library/features.html#v17-leanback

在AndroidManifest.xml中的主要 Activity (启动器)下
<intent-filter>

<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LEANBACK_LAUNCHER" />

</intent-filter>

示例build.gradle:
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.COMPANYNAME.something"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:leanback-v17:23.1.1'
    compile 'com.android.support:design:23.1.1'
}

09-27 23:40