gpt4 book ai didi

android - 我只想设置一次 setOnItemClickListener

转载 作者:太空宇宙 更新时间:2023-11-03 12:59:53 26 4
gpt4 key购买 nike

我使用“包含”XML。我不想设置每个“Activity ”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>

每次我的 Activity 使用“脚”时,我都会在图像上设置“setOnItemClickListener”

我只想设置一次setOnItemClickListener

感谢帮助

最佳答案

如果具有适当 ID 的 ImageView 存在,则使您的所有 Activity 都继承自将设置监听器的基本 Activity 类:

public class MyBaseActivity extends Activity {
public onStart() {
super.onStart();
ImageView clickableImageView = (ImageView) findViewById(R.id.imageView3);
if (clickableImageView!=null) clickableImageView .setOnClickListener(myClickListener);
}

private OnClickListener myClickListener = new OnClickListener() {
// ...
};
}

关于android - 我只想设置一次 setOnItemClickListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13273381/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com