我正在創建一個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());
是否有更改按鈕中的文本的位置在哪裏?