2013-01-10 61 views
0

我有一個佈局我的視圖的問題。 我想要「buttonsLayout」停靠在視圖的底部。這沒有問題,但我的「buttonsLayout」覆蓋「尋呼機」。我希望「尋呼機」停止,「按鍵佈局」開始。Android - 視圖底部的佈局,不覆蓋

我已閱讀了很多帖子,但沒有任何幫助。哪裏不對 ?

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/rootLayout" 
android:layout_width="match_parent" 
android:layout_height="match_parent" > 

<android.support.v4.view.ViewPager 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/pager" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:background="@color/gray" > 
</android.support.v4.view.ViewPager> 

<RelativeLayout 
    android:id="@+id/buttonsLayout" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:orientation="horizontal" > 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:text="Left" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentRight="true" 
     android:text="Right" /> 
</RelativeLayout> 

</RelativeLayout> 

回答

4

將android:layout_above =「@ + id/buttonsLayout」添加到您的尋呼機佈局中。所以尋呼機將永遠不會疊加按鈕。

P.S.我不能看到更多的關閉RelativeLayout標籤在您的XML ...