android – 按钮文本没有在按钮中垂直居中

前端之家收集整理的这篇文章主要介绍了android – 按钮文本没有在按钮中垂直居中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在创建一个 Android应用程序,我有一个按钮,后面有自定义背景图片.背景图像只是一个矩形,但现在按钮文本似乎没有垂直居中.这是我的按钮xml:
<Button 
android:id="@+id/save_to_list"
android:layout_below="@+id/info_pic"
android:text="SAVE TO LIST"
android:textColor="@android:color/white"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:layout_width="260dp"
android:layout_height="35dp"
android:layout_marginTop="15dp"
android:layout_marginBottom="15dp"></Button>

我在这里设置背景:

ImageView button_bg = (ImageView)findViewById(R.id.button_background);
savetolist_button.setBackgroundDrawable(button_bg.getDrawable());

是否有更改按钮内文本位置的位置?

解决方法

android:layout_gravity定义了它的父级内部的布局对齐.要对齐按钮中的文本,您需要android:gravity,例如
<Button 
    ...
    android:gravity="center"
    ...>
</Button>
原文链接:https://www.f2er.com/android/313804.html

猜你在找的Android相关文章