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"