gpt4 book ai didi

android - 找不到资源 : Theme. Leanback

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:26 25 4
gpt4 key购买 nike

我正在为电视构建 android 应用程序并将主题设置为 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

在主要 Activity (启动器)下的 AndroidManifest.xml 中

<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'
}

关于android - 找不到资源 : Theme. Leanback,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28815099/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com