我想把两个按钮放在framelayout中。我可以用RelativeLayout使用alight left属性来做,但是使用Framelayout我没有找到任何这样的属性。如何将拖车按钮对齐在上侧的同一排?
答案 0 :(得分:1)
尝试使用LinearLayout封装按钮,如:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:id="@+id/main">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button"
android:id="@+id/button2" />
</LinearLayout>
</FrameLayout>
答案 1 :(得分:0)
您可以使用layout_gravity属性:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:layout_gravity="left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 1"
android:id="@+id/button_1" />
<Button
android:layout_gravity="right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 2"
android:id="@+id/button_2" />
</FrameLayout>
重力值可以合并为:left|top
,left|center_vertical
,left|bottom
等。
您还可以为第二个按钮使用左边距值,例如:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="200dp"
android:text="button 2"
android:id="@+id/button_2" />
......或者,为什么不,使用重力和边距,将按钮从右边距放置一些dp
<Button
android:layout_gravity="right"
android:layout_marginRight="200dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button 2"
android:id="@+id/button_2" />