【发布时间】:2015-06-09 08:06:34
【问题描述】:
我遇到了问题。
我想用 20dp 的填充将按钮的文本与底部对齐。
但是,文本粘在我的按钮底部。
<Button
android:id="@+id/CatButton"
android:layout_width="match_parent"
android:layout_height="150dp"
android:paddingBottom="20dp"
android:background="@drawable/rounded_1_selected"
android:gravity="bottom|center_horizontal"
android:text="test"/>
谁能帮帮我?
【问题讨论】:
-
你的问题是底部没有显示文字?
-
使用
bottom|center而不是bottom|center_horizontal -
@BidhanA 谢谢。它有效。
标签: android android-layout android-button