Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はそのようなレイアウトが必要です:
button1は左側、button3は右側、button2は中央にあります。そして、それらはすべて垂直方向の真ん中にあります。
それを実装する方法は?
を使用しRelativeLayoutます。
RelativeLayout
ボタン#1には
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
ボタン#2:持っています
android:layout_centerInParent="true"
ボタン#3には
android:layout_alignParentRight="true"