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>
非常感謝。
工作就像一個魅力! – 2015-04-02 14:03:51