如何在android XML文件中制作垂直对齐按钮android,如图像
答案 0 :(得分:2)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button android:text="Button" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="fill_parent"></Button>
</LinearLayout>
对layout_height使用fill_parent。对于OK,你可以使它低于O,但是在图片上必须使用背景图像。
答案 1 :(得分:0)
你可以按照你想要的方式增加高度和宽度,使得“ok”的东西,你必须创建它作为背景图像。
答案 2 :(得分:0)
如果您使用android:background并在drawable中放置如此按钮的图片,您可以将其作为示例:
android:background="@drawable/my_button"