2012-05-22 86 views
0

我正在創建一個視圖,用於在左側顯示圖像,在右側顯示gridview,並在屏幕的底部顯示最後一個屏幕,下一個屏幕,刷新,和家庭導航按鈕,即:佈局幫助 - 相對或線性

圖片| gridview

imagebtn | imagebtn | imagebtn | imagebtn |

我已經嘗試了下面,但失敗了?我是否需要相對的觀點(儘管我也沒有嘗試過)或者我做錯了什麼?

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

    <LinearLayout 
     android:layout_height="fill_parent" 
     android:layout_width="fill_parent" 
     android:layout_gravity="center"> 


     <ImageView 
     android:id="@+id/imageView1" 
     android:layout_width="96dp" 
     android:layout_height="512dp" 
     android:contentDescription="@string/mainlogo" 
     android:src="@drawable/talltree" 
     android:gravity="top" 
     /> 

     <GridView 
     android:id="@+id/gridView1" 
     android:layout_width="wrap_content"  
     android:layout_height="wrap_content" 
     android:numColumns="3" 
     android:verticalSpacing="1dp" 
     android:horizontalSpacing="1dp" 
     android:stretchMode="columnWidth" 
     android:gravity="center" 

     /> 

</LinearLayout> 

<LinearLayout 
     android:layout_height="fill_parent" 
     android:layout_width="fill_parent" 
     android:gravity="center" 
     android:layout_gravity="center"> 

     <ImageButton 
     android:id="@+id/imageButtona" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:src="@drawable/arrow_left" 
     android:contentDescription="@string/game1"> 
     </ImageButton> 


     <ImageButton 
     android:id="@+id/imageButtonb" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:background="@drawable/gamelisttwo" 
     android:src="@drawable/arrow_refresh1"> 
     </ImageButton> 

     <ImageButton 
     android:id="@+id/imageButtonc" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:background="@drawable/gohome" 
     android:src="@drawable/gamelistone"> 
     </ImageButton> 

     <ImageButton 
     android:id="@+id/imageButtond" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:background="@drawable/gamelisttwo" 
     android:src="@drawable/gamelisttwo" 
     android:contentDescription="@string/game2"> 
     </ImageButton> 
</LinearLayout> 

</LinearLayout> 

遺憾的格式化

回答

1

可以實現用你既需要的RelativeLayout和LinearLayout中結合

<?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="fill_parent" > 

<LinearLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_above="@+id/bottom" 
    android:orientation="horizontal" > 

    <ImageView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" /> 

    <GridView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" /> 
</LinearLayout> 

<LinearLayout 
    android:id="@+id/bottom" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_centerHorizontal="true" 
    android:orientation="horizontal" > 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="button1" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="button2" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="button3" /> 

    <Button 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="button4" /> 
</LinearLayout> 

</RelativeLayout> 
+0

謝謝。這使我走上了正確的軌道與相對佈局。 –

1

在第一LinearLayout使用本:android:orientation="vertical"

在第二LinearLayout使用這個:android:orientation="horizontal"

第三個LinearLayout使用這個:android:orientation="horizontal"

+0

我實際上已經修復了這一點,並且在圖像按鈕從屏幕底部被推下時,將「fill_parent」 更改爲wrap_content。現在我所需要做的就是將按鈕按下到屏幕的底部,而不是在第一個線性佈局(圖像加gridview)之後立即放置它們。畢竟,我可能不得不求助於相對佈局。 –