Android vectorDrawables.useSupportLibrary = true 正在停止应用程序
Android vectorDrawables.useSupportLibrary = true is stopping app
如果我在 gradle 中使用 vectorDrawables.useSupportLibrary = true 那么 运行 该应用程序不幸停止了。如果我删除 vectorDrawables.useSupportLibrary = true 应用程序工作。
我的gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
vectorDrawables.useSupportLibrary = true
applicationId "com.helikanon.firstapp"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'com.jakewharton:butterknife:8.4.0'
compile 'com.android.support:support-v4:25.1.0'
testCompile 'junit:junit:4.12'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
compile 'uk.co.chrisjenx:calligraphy:2.2.0'
compile 'com.google.android.gms:play-services-ads:10.0.1'
}
错误:
E/AndroidRuntime: FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.helikanon.firstapp/com.helikanon.firstapp.activities.MainActivity}: android.view.InflateException: Binary XML file line #62: Error inflating class Button
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
at android.app.ActivityThread.access0(ActivityThread.java:130)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4745)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.view.InflateException: Binary XML file line #62: Error inflating class Button
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:704)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
.
.
.
当我使用 Api 16 和 Api 19 时,应用程序崩溃了,但是当我使用 Api 23 时,应用程序崩溃了。
您不能在除 ImageView
pre-lollipop 之外的任何其他视图中使用 Vector Drawables。
请参阅 google 开发者倡导者的这篇 。
For AppCompat users, we’ve decided to remove the functionality which let you use vector drawables from resources on pre-Lollipop devices due to issues found in the implementation in version 23.2.0/23.2.1 [ https://code.google.com/p/android/issues/detail?id=205236, https://code.google.com/p/android/issues/detail?id=204708 ]. Using app:srcCompat
and setImageResource()
continues to work.
如果您想使用 Vector Drawables pre-lollipop,可以通过将其转换为 drawable 以编程方式设置它。
Drawable drawable;
if (android.os.Build.VERSION.SDK_INT > Build.VERSION_CODES.M) {
drawable = context.getResources().getDrawable(drawableResId, context.getTheme());
} else {
drawable = VectorDrawableCompat.create(context.getResources(), drawableResId, context.getTheme());
}
button.setCompoundDrawablesWithIntrinsicBounds(drawable, null, null, null);
我参与了一个实践项目,试图在 Android 中学习后台任务和服务。当我提取他们的示例代码时,最初由于 错误而无法编译。所以我在应用程序的 build.gradle 文件中添加了以下标签以消除编译问题:
android {
defaultConfig{
vectorDrawables.useSupportLibrary = true
}
}
现在,当我添加此配置时,我的应用程序也开始在 Microsoft Android 模拟器中崩溃,正如 OP 所描述的那样。
由于我目前的重点是了解后台任务,所以我想开始调试我的应用程序。所以,我再次删除了上面的配置设置。除此之外,我还在我的一个可绘制资源的 path
标记中删除了一个名为 android:fillColor
的属性(或者您也可以将值 @color/colorAccent
替换为十六进制代码,例如 #FF000000
).删除(或用十六进制代码更改)后,我的初始编译错误没有出现:
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="@color/colorAccent"
android:pathData="M16.01 7L16 3h-2v4h-4V3H8v4h-0.01C7 6.99 6 7.99 6 8.99v5.49L9.5
18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z" />
<path
android:pathData="M0 0h24v24H0z" />
</vector>
删除后看起来像:
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M16.01 7L16 3h-2v4h-4V3H8v4h-0.01C7 6.99 6 7.99 6 8.99v5.49L9.5
18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z" />
<path
android:pathData="M0 0h24v24H0z" />
</vector>
我的 MS Android 模拟器有 Kitkat(4.4)。我的代码崩溃了,因为我的应用程序试图在 Android 的前棒棒糖版本上使用矢量可绘制对象,如 Vipul 接受的答案中所述。
要使用 VectorDrawableCompat,您需要设置:
android.defaultConfig.vectorDrawables.useSupportLibrary = true
要使用 VectorDrawableCompat,您需要对您的项目进行两处修改。首先,在 build.gradle 文件中设置 android.defaultConfig.vectorDrawables.useSupportLibrary = true,其次,使用 app:srcCompat 而不是 android:src 来引用矢量绘图。
转到您的 build.gradle
(模块:app)并将以下行添加到 android 块。它应该是这样的。
android {
compileSdkVersion 27
defaultConfig {
applicationId "..."
minSdkVersion 15
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true // <------
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
将源引用为 srcCompat 以允许您的应用程序使用矢量图形。
app:srcCompat="@drawable/plane"
在你的情况下,问题是 Button 不是 ImageView 的子类。
ImageView 或其子类 ImageButton 和 FloatingActionButton 可以使用新的 app:srcCompat
引用矢量绘图的属性。
要支持矢量可绘制对象和动画矢量可绘制对象,您需要添加:
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
并使用app:srcCompat
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add" />
您仍然可以使用 AndroidX 提供的此方法以编程方式将 Vector Drawable 转换为 drawable:
val drawable = AppCompatResources.getDrawable(context, R.drawable.loading_indeterminate)
https://developer.android.com/guide/topics/graphics/vector-drawable-resources
https://medium.com/androiddevelopers/using-vector-assets-in-android-apps-4318fd662eb9
如果你的 minSdkVersion 21 或更高你不需要这个。
Android 5.0 正式支持矢量图。
https://developer.android.com/guide/topics/graphics/vector-drawable-resources
更新:如 StuStirling 所述,如果您在矢量文件中引用其他资源,则在 API24 (Android 7.0) 以下需要此更新。
更新:
如果您删除了 vectorDrawables.useSupportLibrary = true
分析 APK 中从矢量生成的 png。如果您在可绘制对象中找到 ex: xxxhdpi-v4
放回 useSupportLibrary 行。
(我没有从向量中引用其他可绘制对象)
如果我在 gradle 中使用 vectorDrawables.useSupportLibrary = true 那么 运行 该应用程序不幸停止了。如果我删除 vectorDrawables.useSupportLibrary = true 应用程序工作。
我的gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
vectorDrawables.useSupportLibrary = true
applicationId "com.helikanon.firstapp"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'com.jakewharton:butterknife:8.4.0'
compile 'com.android.support:support-v4:25.1.0'
testCompile 'junit:junit:4.12'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
compile 'uk.co.chrisjenx:calligraphy:2.2.0'
compile 'com.google.android.gms:play-services-ads:10.0.1'
}
错误:
E/AndroidRuntime: FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.helikanon.firstapp/com.helikanon.firstapp.activities.MainActivity}: android.view.InflateException: Binary XML file line #62: Error inflating class Button
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2059)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2084)
at android.app.ActivityThread.access0(ActivityThread.java:130)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1195)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4745)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.view.InflateException: Binary XML file line #62: Error inflating class Button
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:704)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:746)
.
.
.
当我使用 Api 16 和 Api 19 时,应用程序崩溃了,但是当我使用 Api 23 时,应用程序崩溃了。
您不能在除 ImageView
pre-lollipop 之外的任何其他视图中使用 Vector Drawables。
请参阅 google 开发者倡导者的这篇
For AppCompat users, we’ve decided to remove the functionality which let you use vector drawables from resources on pre-Lollipop devices due to issues found in the implementation in version 23.2.0/23.2.1 [ https://code.google.com/p/android/issues/detail?id=205236, https://code.google.com/p/android/issues/detail?id=204708 ]. Using
app:srcCompat
andsetImageResource()
continues to work.
如果您想使用 Vector Drawables pre-lollipop,可以通过将其转换为 drawable 以编程方式设置它。
Drawable drawable;
if (android.os.Build.VERSION.SDK_INT > Build.VERSION_CODES.M) {
drawable = context.getResources().getDrawable(drawableResId, context.getTheme());
} else {
drawable = VectorDrawableCompat.create(context.getResources(), drawableResId, context.getTheme());
}
button.setCompoundDrawablesWithIntrinsicBounds(drawable, null, null, null);
我参与了一个实践项目,试图在 Android 中学习后台任务和服务。当我提取他们的示例代码时,最初由于
android {
defaultConfig{
vectorDrawables.useSupportLibrary = true
}
}
现在,当我添加此配置时,我的应用程序也开始在 Microsoft Android 模拟器中崩溃,正如 OP 所描述的那样。
由于我目前的重点是了解后台任务,所以我想开始调试我的应用程序。所以,我再次删除了上面的配置设置。除此之外,我还在我的一个可绘制资源的 path
标记中删除了一个名为 android:fillColor
的属性(或者您也可以将值 @color/colorAccent
替换为十六进制代码,例如 #FF000000
).删除(或用十六进制代码更改)后,我的初始编译错误没有出现:
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:fillColor="@color/colorAccent"
android:pathData="M16.01 7L16 3h-2v4h-4V3H8v4h-0.01C7 6.99 6 7.99 6 8.99v5.49L9.5
18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z" />
<path
android:pathData="M0 0h24v24H0z" />
</vector>
删除后看起来像:
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="80dp"
android:height="80dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:pathData="M16.01 7L16 3h-2v4h-4V3H8v4h-0.01C7 6.99 6 7.99 6 8.99v5.49L9.5
18v3h5v-3l3.5-3.51v-5.5c0-1-1-2-1.99-1.99z" />
<path
android:pathData="M0 0h24v24H0z" />
</vector>
我的 MS Android 模拟器有 Kitkat(4.4)。我的代码崩溃了,因为我的应用程序试图在 Android 的前棒棒糖版本上使用矢量可绘制对象,如 Vipul 接受的答案中所述。
要使用 VectorDrawableCompat,您需要设置:
android.defaultConfig.vectorDrawables.useSupportLibrary = true
要使用 VectorDrawableCompat,您需要对您的项目进行两处修改。首先,在 build.gradle 文件中设置 android.defaultConfig.vectorDrawables.useSupportLibrary = true,其次,使用 app:srcCompat 而不是 android:src 来引用矢量绘图。
转到您的
build.gradle
(模块:app)并将以下行添加到 android 块。它应该是这样的。android { compileSdkVersion 27 defaultConfig { applicationId "..." minSdkVersion 15 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" vectorDrawables.useSupportLibrary = true // <------ } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } }
将源引用为 srcCompat 以允许您的应用程序使用矢量图形。
app:srcCompat="@drawable/plane"
在你的情况下,问题是 Button 不是 ImageView 的子类。
ImageView 或其子类 ImageButton 和 FloatingActionButton 可以使用新的 app:srcCompat
引用矢量绘图的属性。
要支持矢量可绘制对象和动画矢量可绘制对象,您需要添加:
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
并使用app:srcCompat
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/ic_add" />
您仍然可以使用 AndroidX 提供的此方法以编程方式将 Vector Drawable 转换为 drawable:
val drawable = AppCompatResources.getDrawable(context, R.drawable.loading_indeterminate)
https://developer.android.com/guide/topics/graphics/vector-drawable-resources
https://medium.com/androiddevelopers/using-vector-assets-in-android-apps-4318fd662eb9
如果你的 minSdkVersion 21 或更高你不需要这个。
Android 5.0 正式支持矢量图。
https://developer.android.com/guide/topics/graphics/vector-drawable-resources
更新:如 StuStirling 所述,如果您在矢量文件中引用其他资源,则在 API24 (Android 7.0) 以下需要此更新。
更新:
如果您删除了 vectorDrawables.useSupportLibrary = true
分析 APK 中从矢量生成的 png。如果您在可绘制对象中找到 ex: xxxhdpi-v4
放回 useSupportLibrary 行。
(我没有从向量中引用其他可绘制对象)