【发布时间】:2021-03-28 10:53:39
【问题描述】:
我正在将我的应用程序从 AppCompat 转换为 MaterialComponents。
我遇到了一个问题,Widget.MaterialComponents. 下没有适用于ImageButton 的主题。
这是我的一个 ImageButtons 的示例:
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="4dp"
android:scaleType="fitCenter"
android:tint="@color/shape_orange"
app:layout_constraintBottom_toTopOf="@+id/guideline7"
app:layout_constraintEnd_toStartOf="@+id/guideline5"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/guideline6"
app:srcCompat="@drawable/shape" />
如何实现MaterialComponents 查找ImageButton?我想为ImageButton实现.OutlinedButton风格
【问题讨论】:
标签: android android-layout material-components-android android-imagebutton