Android 在带有API的Emulator上运行时,启动屏幕不会加载<;24

Android 在带有API的Emulator上运行时,启动屏幕不会加载<;24,android,android-studio,kotlin,Android,Android Studio,Kotlin,我的应用程序在API的启动屏幕上崩溃图像被粘贴到错误的drawables文件夹中。我最初是在drawables v-24中使用的。将其移动到drawables后,它工作正常。这是vector drawables的问题?Hi@Md.Asaduzzaman,我如何为APIpost修复它?发布飞溅活动代码,这看起来很好。同时发布异常和错误消息shi@Md.Asaduzzaman,你为我指明了正确的方向。代码是完美的。好像我把iages贴在drawables-v24上了。我把它移到了drawables,

我的应用程序在API的启动屏幕上崩溃图像被粘贴到错误的drawables文件夹中。我最初是在
drawables v-24
中使用的。将其移动到
drawables
后,它工作正常。

这是vector drawables的问题?Hi@Md.Asaduzzaman,我如何为APIpost修复它?发布飞溅活动代码,这看起来很好。同时发布异常和错误消息shi@Md.Asaduzzaman,你为我指明了正确的方向。代码是完美的。好像我把iages贴在drawables-v24上了。我把它移到了
drawables
,现在一切都好了。
<?xml version="1.0" encoding="utf-8"?>
 <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:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
    android:id="@+id/imageView12"
    android:layout_width="112dp"
    android:layout_height="84dp"
    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"
    app:srcCompat="@drawable/logo" />
</androidx.constraintlayout.widget.ConstraintLayout>