ฉันมีรูปแบบเชิงเส้น (วางในแนวนอน) ที่มี 3 ปุ่ม ฉันต้องการให้ปุ่มทั้ง 3 มีความกว้างคงที่และกระจายอย่างสม่ำเสมอทั่วทั้งความกว้างของเค้าโครงแบบเส้นตรง
ฉันสามารถจัดการสิ่งนี้ได้โดยการตั้งค่าแรงโน้มถ่วงของ linearlayout ให้อยู่กึ่งกลางจากนั้นจึงปรับเปลี่ยนช่องว่างภายในของปุ่ม แต่มันใช้งานได้กับความกว้างคงที่และจะไม่ทำงานสำหรับการเปลี่ยนอุปกรณ์หรือทิศทาง
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:gravity="center">
<Button
android:id="@+id/btnOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button>
<Button
android:id="@+id/btnTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button>
<Button
android:id="@+id/btnThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button>
</LinearLayout>