2012-06-19 68 views
0

我創建了一個線性佈局,並添加了兩個相對佈局。我希望在底部的另一個佈局中顯示一個佈局。我的問題是佈局顯示在頂部。如何更改1layout頂部另一個是底部請幫助我。如何在底部顯示相對佈局?

XML代碼:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:background="@drawable/blue" 
    android:orientation="horizontal" > 

    <RelativeLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="fill_parent" 
     android:layout_height="55px" 
     android:background="@drawable/testheader" 
     android:orientation="horizontal" > 

     <TextView 
      android:id="@+id/header_text" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_centerHorizontal="true" 
      android:layout_centerVertical="true" 
      android:text="settings" 
      android:textColor="@color/white" 
      android:textSize="20sp" /> 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:text="image" /> 

    </RelativeLayout> 

    <RelativeLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="wrap_content" 
     android:layout_height="55px" 
     android:background="@drawable/testheader" 
     android:orientation="horizontal" 
     android:layout_alignParentBottom="true" 
     android:layout_gravity="bottom" 
     > 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:text="Return" /> 
    </RelativeLayout> 



</LinearLayout> 
+1

更改您的LinearLayout到RelativeLayout的。 –

回答

2
<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:background="@drawable/blue" 

    > 

    <RelativeLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="fill_parent" 
     android:layout_height="55px" 
     android:background="@drawable/testheader" 
     android:orientation="horizontal" 

     > 

     <TextView 
      android:id="@+id/header_text" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="settings" 
      android:textColor="@color/white" 
      android:textSize="20sp" 
      android:layout_centerInParent="true"/> 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="image" 
      android:layout_alignParentLeft="true" 
      android:layout_centerVertical="true"/> 

    </RelativeLayout> 


    <LinearLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="fill_parent" 
     android:layout_height="55px" 
     android:background="@drawable/testheader" 
     android:orientation="horizontal" 
     android:layout_alignParentBottom="true" 
     android:layout_gravity="bottom" 
     > 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:text="Return" /> 
    </LinearLayout> 


</RelativeLayout> 

enter image description here

+0

更新了底部視圖以及... –

0

嘗試Parentalayout與相對layout.See下面

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:background="@drawable/blue" 
    android:orientation="horizontal" > 

    <RelativeLayout 
     android:layout_width="fill_parent" 
     android:layout_height="55px" 
     android:layout_alignParentTop="true" 
     android:background="@drawable/testheader" 
     android:orientation="horizontal" > 

     <TextView 
      android:id="@+id/header_text" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_centerHorizontal="true" 
      android:layout_centerVertical="true" 
      android:text="settings" 
      android:textColor="@color/white" 
      android:textSize="20sp" /> 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:text="image" /> 

    </RelativeLayout> 

    <RelativeLayout 
     android:layout_width="wrap_content" 
     android:layout_height="55px" 
     android:background="@drawable/testheader" 
     android:orientation="horizontal" 
     android:layout_alignParentBottom="true" 
     android:layout_gravity="bottom" 
     > 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:text="Return" /> 
    </RelativeLayout> 



</RelativeLayout> 
0

的XML你的LinearLayout方向更改爲vertical

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:background="@drawable/blue" 
    android:orientation="vertical" > 
-1

在線性佈局,變化垂直的方向。

0

父佈局應該是一個RelativeLayout的,所以你可以positionne別人的頂部和底部是這樣佈局:

<RelativeLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="fill_parent" 
     android:layout_height="55px" 
     android:background="@drawable/testheader" 
     android:alignParentTop ="true" > 

     <TextView 
      android:id="@+id/header_text" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_centerHorizontal="true" 
      android:layout_centerVertical="true" 
      android:text="settings" 
      android:textColor="@color/white" 
      android:textSize="20sp" /> 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:text="image" /> 

    </RelativeLayout> 

    <RelativeLayout 
     xmlns:android="http://schemas.android.com/apk/res/android" 
     android:layout_width="wrap_content" 
     android:layout_height="55px" 
     android:background="@drawable/testheader" 
     android:orientation="horizontal" 
     android:layout_alignParentBottom="true" 
     android:layout_gravity="bottom" 
     > 

     <Button 
      android:id="@+id/btnReturn" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:text="Return" /> 
    </RelativeLayout> 



</RelativeLayout> 
0

enter image description here

<RelativeLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentRight="true" 
    android:layout_alignParentTop="true" 
    android:background="#F0F" > 

    <TextView 
     android:id="@+id/textView1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:layout_marginLeft="90dp" 
     android:text="Large Text" 
     android:textAppearance="?android:attr/textAppearanceLarge" /> 

</RelativeLayout> 

<RelativeLayout 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentRight="true" 
    android:background="#F0F" > 

    <Button 
     android:id="@+id/button1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:text="Button" /> 
</RelativeLayout> 

1

只需更改您的LinearLayoutRelativeLayout,然後創建兩個內部相對佈局,一個使用android:layout_alignParentTop="true"設置,其次使用android:layout_alignParentBottom="true",然後它將以您想要的方式工作。

相關問題