2012-06-19 69 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",然后它将以您想要的方式工作。

相关问题