Logcat警告:考虑使用Resources.getDrawable(int,Theme)或Context.getDrawable(int)

时间:2016-04-04 03:04:00

标签: android

当我想输入数据但我没有在我的代码中使用任何drawable时发现此错误。我只是使用一个简单的EditText来读取数据。我已在本论坛中提到了许多其他解决方案,但它无法提供帮助。

Drawable android:drawable/text_cursor_material has unresolved theme attributes! Consider using Resources.getDrawable(int, Theme) or Context.getDrawable(int).
java.lang.RuntimeException
    at android.content.res.Resources.getDrawable(Resources.java:740)
    at android.support.v7.widget.TintResources.superGetDrawable(TintResources.java:48)
    at android.support.v7.widget.AppCompatDrawableManager.onDrawableLoadedFromResources(AppCompatDrawableManager.java:374)
    at android.support.v7.widget.TintResources.getDrawable(TintResources.java:44)
    at android.widget.Editor$InsertionHandleView.getHotspotX(Editor.java:3772)
    at android.widget.Editor$HandleView.updateDrawable(Editor.java:3399)

已编辑(build.gradle)

apply plugin: 'com.android.application'


android {
compileSdkVersion 23
buildToolsVersion "23.0.2"


defaultConfig {
    applicationId "com.example.user.myapp"
    minSdkVersion 16
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    // Enabling multidex support.
   // multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
wearApp project(':wear')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:design:23.2.0'

compile files('libs/org.apache.http.legacy.jar')

compile 'com.android.support:support-v4:23.2.0'
}

1 个答案:

答案 0 :(得分:0)

总结这个issue

  • 使用ContextCompat.getDrawable(Context, int)代替getResources().getDrawable(int)(已弃用)。

  • 使用0.8.5.7或更高版本(如果可用)但不使用<{1>} 材料对话框