以下是app的布局。它在viewflipper
下有两个视图。在第二个视图中,有3行,第1行有3个按钮,第2行有图像,第3行有3个按钮。我希望第1行与屏幕顶部对齐,第3行与屏幕底部对齐,图像与其间的空间对齐。有人能告诉我如何实现这个目标吗?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical">
<ViewFlipper android:id="@+id/ViewFlipper01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!--adding views to ViewFlipper-->
<!--view=1-->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/tv1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
>
</TextView>
<VideoView
android:id="@+id/myvideoview"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
<Button
android:id="@+id/b"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
<!--view=2-->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<!--row 1-->
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="Back" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="Upload to Facebook" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/button3"
android:text="Save" />
</RelativeLayout>
<!--row 2-->
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
<!--row 3-->
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Previous" />
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/button4">
</Spinner>
<Button
android:id="@+id/button5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/spinner"
android:text="Next" />
</RelativeLayout>
</LinearLayout>
</ViewFlipper>
</LinearLayout>
答案 0 :(得分:0)
使用RelativeLayout
作为视图。
然后在第一行使用android:layout_alignParentTop="true"
,在第三行使用android:layout_alignParentBottom="true"
最后,在中间的图片上使用android:layout_below="@id/first_row" android:layout_above="@id/third_row"
和尺度为fill_parent
。