我有一个这样的按钮:
<Button
android:id="@+id/button_down"
android:layout_width="wrap_content"
android:layout_height="36dp"
android:drawableLeft="@drawable/button_down"
android:background="@color/grey"
/>
但按钮不包含内容:
http://i.imgur.com/vagdUxy.png
注意(褪色)图标右侧的大量空间。
答案 0 :(得分:7)
出于设计和可用性原因,我认为该按钮与默认minWidth
相关联。添加android:minWidth="1dp"
,按钮将与文字一样宽。