0
我被卡在gridview。 我想要一個GridView下面的圖像視圖來處理點擊事件。 基本上我需要的是,當點擊這個圖像視圖按鈕(這裏imageView_uparrow)它會滑動包含此GridView的佈局, ,但是當我在xml中添加imageview(imageView_uparrow)在gridview(imageView_uparrow)下面並運行該項目; gridview在每個網格圖標上重複該imageview。 我希望imageview在底部出現一次。這是我的XML。避免在android gridview中重複查看
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="top" >
<GridView
android:id="@+id/inside_gridView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="50dp"
android:layout_marginLeft="14dp"
android:layout_marginRight="14dp"
android:layout_marginTop="58dp"
android:alpha="0.1"
android:background="#696969"
android:columnWidth="10dp"
android:gravity="center"
android:numColumns="3"
android:padding="4dp"
android:scrollbars="vertical"
android:stretchMode="columnWidth" >
</GridView>
<ImageView
android:id="@+id/image_insidegrid"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_margin="5dp"
android:contentDescription="@string/hello_world" />
<ImageView
android:id="@+id/imageView_uparrow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="22dp"
android:layout_marginRight="20dp"
android:contentDescription="@string/hello_world"
android:src="@drawable/drop_down_top_arrow" />
</RelativeLayout>
最後的圖像視圖,即imageView_uparrow繼續重複使用gridview項目。 請幫我這個..在此先感謝。