我在布局中放置了灰色背景,因此与白色有很大不同,但是现在按钮占用的空间中有空白,这使所有内容都变得丑陋,我想知道如何解决该问题以匹配背景色?
屏幕截图:
按钮XML:
<Button
android:id="@+id/arrow"
android:layout_width="70dp"
android:layout_height="27dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="@drawable/bluebtn"
android:rotation="90"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
答案 0 :(得分:0)
如果要占用Button
父级宽度和高度,则应使用0dp
:
<Button
android:id="@+id/arrow"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="@drawable/bluebtn"
android:rotation="90"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
使用0dp,相当于“ MATCH_CONSTRAINT”
答案 1 :(得分:0)
您需要使用ImageButton并设置按钮 属性为空
<ImageButton
...
android:button="@null"
android:background=“@drawable/bluebtn”
...
/>
如果这不起作用,则表示您的图片没有透明背景,您需要制作一个具有透明背景的新bluebtn可绘制图片。