<Button
android:id="@+id/btnSetDate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_weight="1.0"
android:text="Set Date" />
<Button
android:id="@+id/btnSetTime"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_weight="1.0"
android:text="Set Time" />
如何将两个按钮居中,如图像?
答案 0 :(得分:3)
简单!我们走了......
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical" >
<Button
android:id="@+id/btnSetDate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="Set Date" />
<Button
android:id="@+id/btnSetTime"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="Set Time" />
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:2)
只需将按钮包装到LinearLyaout等内容中,使用android:gravity =“center_vertical”就行了。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="vertical" >
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="btn1" >
</Button>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="btn2" >
</Button>
</LinearLayout>