「インクルード」XMLを使用します。各「アクティビティ」setOnItemClickListenerを設定したくありません。
私の「インクルード」XMLfood.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
助けてくれてありがとう