我有一個GridView
:ImageView的上一個GridView
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_margin="5dp"
android:layout_weight="1"
android:orientation="horizontal" >
<GridView
android:id="@+id/gridView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/DarkSlateGray"
android:layout_weight="1"
android:columnWidth="200dp"
android:gravity="center"
android:numColumns="auto_fit"
android:stretchMode="none" >
</GridView></LinearLayout>
Grid http://mytelcoit.com/wp-content/uploads/2010/02/Icon_with_Text.jpg
我想在此之上添加一個ImageView的。
嘗試<include>
:
<include layout="@layout/connection"/>
connection.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rl_connection"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:src="@drawable/globe_connected_icon_48"
android:layout_width="wrap_content"
android:layout_height="wrap_content" /></RelativeLayout>
但是結果看起來是這樣的:
Grid2 http://oi44.tinypic.com/2lthnvs.jpg
是否有一種方式來顯示它的頂部GridView
是這樣的:
Grid3 http://oi41.tinypic.com/9ivfqv.jpg
簡單的事情拯救了我的一天。謝謝 :) – wervdon