4
我有兩個彼此相鄰的按鈕。我希望它們具有相同的尺寸並填充屏幕的整個寬度。我一直在試圖與此代碼: (它的RelativeLayout的,如果該事項)Android對齊兩個按鈕
<Button android:text="Names"
android:id="@+id/Button01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
</Button>
<Button android:text="Dates"
android:id="@+id/Button02"
android:layout_toRightOf="@+id/Button01"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
</Button>
這是一個美麗的解決方案。完全按照需要工作。 – jbranchaud 2011-03-18 02:27:01