我看到由于缺少可绘制矢量而导致的生产崩溃。我已经看到了很多类似的问题,但它们都与棒棒糖之前的兼容性有关,我的应用程序的minSDK为21。
对于何时使用android:src
与app:srcCompat
和vectorDrawables.useSupportLibrary true
我的:app
的{{1}}文件中有build.gradle
:
vectorDrawables.useSupportLibrary true
此fragment / xml / drawable所在的库模块不是:
android {
compileSdkVersion androidCompileSdkVersion
buildToolsVersion androidBuildToolsVersion
defaultConfig {
applicationId "com.company.packagename"
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
versionCode appVersionCode
versionName appVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary true
}
}
}
可能是原因吗?如果我的minSDK是21,该标记甚至相关吗?
我的XML:
apply plugin: 'com.android.library'
android {
compileSdkVersion androidCompileSdkVersion
defaultConfig {
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
versionCode appVersionCode
versionName appVersionName
}
}
这是堆栈跟踪:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/frameLayout3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/blue_radial_gradient"
tools:context=".home.AuthHomeFragment">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="47dp"
android:layout_marginBottom="40dp"
app:srcCompat="@drawable/logo"
app:layout_constraintBottom_toTopOf="@+id/authWithFacebookButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.497"
app:layout_constraintStart_toStartOf="parent" />
<include layout="@layout/facebook_button"
android:id="@+id/authWithFacebookButton"
style="?android:attr/borderlessButtonStyle"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_marginStart="32dp"
android:layout_marginEnd="32dp"
android:background="@drawable/kinedu_button_background"
android:backgroundTint="@color/com_facebook_blue"
android:focusable="true"
android:foreground="@drawable/ripple_action_black_foreground"
android:gravity="center"
android:maxWidth="300dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
答案 0 :(得分:0)
我认为找不到的资源来自android:background
。您是否使用可绘制矢量?我之前经历过,可以包装可绘制矢量使用层列表。例如,我们在可绘制文件夹中将此文件命名为bg_kinedu_btn
:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/kinedu_button_background"/>
</layer-list>
然后您可以通过以下方式调用它:
<include layout="@layout/facebook_button"
android:id="@+id/authWithFacebookButton"
style="?android:attr/borderlessButtonStyle"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_marginStart="32dp"
android:layout_marginEnd="32dp"
android:background="@drawable/bg_kinedu_btn"
android:backgroundTint="@color/com_facebook_blue"
android:focusable="true"
android:foreground="@drawable/ripple_action_black_foreground"
android:gravity="center"
android:maxWidth="300dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
希望这会有所帮助。