gpt4 book ai didi

Android Studio 找不到现有资源

转载 作者:行者123 更新时间:2023-12-03 18:14:43 25 4
gpt4 key购买 nike

由于 Google 最近宣布 Android Studio 是 Android 开发的官方 IDE,我决定将我的工作环境从 Eclipse IDE 更改为 Android Studio。

将项目导入 Android Studio 后,我遇到了一个奇怪的错误。报错说在一个R.drawables数组中找不到两个已有的R.drawables,资源是两张png图片。

这是数组的语法:

flag = new int[] {R.drawable.thegodfather,R.drawable.thegeneral,R.drawable.kingofcomedy,
R.drawable.drstrangelove,R.drawable.thebiglebowski}

导致错误的两个 R.drawable 是 thegodfather 和 kingofcomedy。

这是错误信息:(1)

>     Error:(101, 32) error: cannot find symbol variable thegodfather
> Error:(101, 78) error: cannot find symbol variable kingofcomedy
> Note: Some input files use or override a deprecated API.
> Note: Recompile with -Xlint:deprecation for details.
> Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> > Compilation failed; see the compiler error output for details.

(2)

/Users/rawandsultani/Documents/ANDROID/V1/v11/app/src/main/java/com/exple/top100/Top100Activity.java:101: error: cannot find symbol
flag = new int[] {R.drawable.thegodfather,R.drawable.thegeneral,R.drawable.kingofcomedy,
^
symbol: variable thegodfather
location: class drawable
/Users/rawandsultani/Documents/ANDROID/V1/v11/app/src/main/java/com/exple/top100/Top100Activity.java:101: error: cannot find symbol
flag = new int[] {R.drawable.thegodfather,R.drawable.thegeneral,R.drawable.kingofcomedy,
^
symbol: variable kingofcomedy
location: class drawable
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
2 errors

FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

经过无数次清理、重建、反转和重启的努力,同样的错误仍然存​​在。我已经检查过该资源确实存在,我已经删除并替换了它以确保万无一失。它仍然不起作用。

是什么导致 Android Studio 忽略这两个资源?

这是我的 Android list 文件的开头:

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

<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="23" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>

这是我的 Gradle.build :

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.exple.v1"
minSdkVersion 11
targetSdkVersion 23
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}

dependencies {
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
}

同样,我不知道是什么导致了这个问题。在 Stack 上搜索后,我发现有些人遇到了类似的问题,但通过清理项目或重新启动 Android Studio 解决了这个问题,但我没有解决。

list 文件和 Gradle.build 用于提供额外信息以防万一有人需要看一下。

最佳答案

您是否已验证 Android 项目中是否存在名称正确的适当文件夹?

编辑:

您是否尝试过从 Android Studio 中移除(删除)并添加它们而不是导入的版本?

关于Android Studio 找不到现有资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32407817/

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