在Android 4.4中为布局充气时,我的应用程序崩溃了,错误是
java.lang.RuntimeException:无法启动活动ComponentInfo {com.my.app/com.my.app.ui.splashscreen.SplashScreen}:android.view.InflateException:二进制XML文件第2行:膨胀类错误androidx.constraintlayout.widget.ConstraintLayout
我使用了androidx.constraintlayout:constraintlayout:2.0.0-beta3或androidx.constraintlayout:constraintlayout:1.1.3,但它仍然崩溃了。 它仅在android <5上崩溃,并且在android> = 5
上正常工作implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splashscreen);
}
<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/containers"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_gradient_primary"
tools:context=".ui.splashscreen.SplashScreen">
<ImageView
android:id="@+id/imageView2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:scaleType="fitXY"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/bg_splash"
app:tint="?attr/colorPrimaryDark" />
<ImageView
android:id="@+id/iv_logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/logo_izzy_white" />
</androidx.constraintlayout.widget.ConstraintLayout>
这很奇怪,因为它仅在Android <5上崩溃了
我发现崩溃是由drawable引起的。我尝试使用支持库
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
和
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
在应用程序类中,但仍然崩溃。 这是我的绘画
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:angle="315"
android:centerColor="?attr/theme_primary"
android:endColor="?attr/theme_primaryMiddle"
android:startColor="?attr/theme_primaryLight" />
</shape>
答案 0 :(得分:0)
在build.gradle(应用程序级别)中实现
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
希望它能起作用...
答案 1 :(得分:0)
我发现我的崩溃是因为在预棒棒糖设备上渐变导致崩溃,所以我创建了2个drawable。第一个是仅在drawable文件夹上是纯色,而在drawable-v24上是渐变。