android 4.4是否支持androidx.appcompat.widget.AppCompatButton中的an


<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/Black"
android:orientation="horizontal">
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/buttonFoo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:drawableStart="@drawable/ic_foo_icon"
android:drawablePadding="8dp"
android:text="@string/foo" />
/androidx.appcompat.widget.LinearLayoutCompat>

当活动开始时,上述活动布局将在Android 4.4上导致以下异常:

android.view.InflateException: Binary XML file line #123: Error inflating class <unknown>

它只在Android 4.4上发生。所有其他设备都很好
如果删除以下内容,一切都会好起来:

android:drawableStart="@drawable/ic_foo_icon"

android 4.4是否支持androidx.appcompat.widget.AppCompatButton中的android:drawableStart?

为什么不使用drawableLeft/drawableRight?

相关内容

  • 没有找到相关文章

最新更新