我使用“包含”XML。我不想设置每个“活动”setOnItemClickListener。
我的“包含”XML food.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/foot"
android:layout_width="fill_parent"
android:layout_height="36dp"
android:layout_alignParentBottom="true"
android:background="#292929"
android:gravity="right|center_vertical"
android:padding="5dp" >
<ImageView
android:id="@+id/imageView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:src="@drawable/categories" />
</LinearLayout>
我把他放在哪里
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#595858"
android:gravity="top" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/foot">
<include
android:layout_alignParentBottom="true"
layout="@layout/foot" />
</RelativeLayout>
每次我的活动使用“脚”时,我都会在图像“setOnItemClickListener”上设置
我只想设置一次 setOnItemClickListener
谢谢您的帮助