0

以下はアプリのレイアウトです。の下に2つのビューがありますviewflipper。2番目のビューには、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>
4

1 に答える 1

0

ビューに使用RelativeLayoutします。

次に、1行目で使用android:layout_alignParentTop="true"し、3行目で使用しますandroid:layout_alignParentBottom="true"

最後に、中央の画像で寸法を使用android:layout_below="@id/first_row" android:layout_above="@id/third_row"fill_parentます。

于 2012-06-21T13:19:58.490 に答える