2015-04-02 108 views
0

我試圖在上面創建這個佈局,但我無法得到它。 所有這些塊都是圖像。前兩行是我使用適配器填充OnCreate的GridView。沒關係,它顯示在屏幕上方。 我的問題是應該在屏幕底部對齊的5個圖像。 我不知道我在做什麼錯。如何設置頂部和底部的佈局Android

<?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:orientation="vertical" 
    android:background="@drawable/img_fundo_pp"> 
    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
    <GridView android:id="@+id/grid1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:padding="10dip" 
     android:verticalSpacing="10dip" 
     android:horizontalSpacing="10dip" 
     android:numColumns="auto_fit" 
     android:columnWidth="90dip" 
     android:gravity="center" 
     android:layout_gravity="top" /> 
</RelativeLayout> 
    <View android:id="@+id/spacer" 
     android:layout_width="fill_parent" 
     android:layout_height="0dp" 
     android:layout_weight="1"/> 
     <GridLayout 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:columnCount="3" 
      android:rowCount="3" 
      android:useDefaultMargins="true" 
      android:layout_gravity="top"> 
      <Space android:layout_width="10dp" /> 
      <ImageView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:id="@+id/imageView" 
       android:src="@drawable/btn_link_site"/> 
      <Space android:layout_width="10dp" /> 
      <Space android:layout_width="10dp" /> 
      <ImageView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:id="@+id/imageView2" 
       android:clickable="true" 
       android:src="@drawable/btn_link_facebook"/> 
      <Space android:layout_width="10dp" /> 
      <Space android:layout_width="10dp" /> 
      <ImageView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:id="@+id/imageView3" 
       android:src="@drawable/btn_link_htmj_pp" 
       android:clickable="true"/> 
      <Space android:layout_width="10dp" /> 
      </GridLayout> 
</LinearLayout> 

desired layout

非常感謝。

回答

0

與該XML

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical" > 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_weight="1" > 

    <GridView 
     android:id="@+id/grid1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:columnWidth="90dip" 
     android:gravity="center" 
     android:horizontalSpacing="10dip" 
     android:numColumns="auto_fit" 
     android:padding="10dip" 
     android:verticalSpacing="10dip" /> 
</LinearLayout> 

<View 
    android:id="@+id/spacer" 
    android:layout_width="match_parent" 
    android:layout_height="40dp" /> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_weight="1" 
    android:orientation="vertical" > 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:orientation="horizontal" > 

     <ImageView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_margin="10dp" 
      android:layout_weight="1" /> 

     <ImageView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_margin="10dp" 
      android:layout_weight="1" /> 
    </LinearLayout> 

    <LinearLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     android:orientation="vertical" > 

     <ImageView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_margin="10dp" 
      android:layout_weight="1" /> 

     <ImageView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_margin="10dp" 
      android:layout_weight="1" /> 

     <ImageView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_margin="10dp" 
      android:layout_weight="1" /> 
    </LinearLayout> 
</LinearLayout> 

+0

工作就像一個魅力! – 2015-04-02 14:03:51

0

你需要讓你的根佈局相對佈局和什麼喲想設置在底部增加都在同一個layhout並在下面給出資產的設計佈局。而已。

android:layout_alignParentBottom="true" 
相關問題