gpt4 book ai didi

java - onClick 在对话框内的 ListView 中的 ImageView

转载 作者:行者123 更新时间:2023-12-01 13:42:14 25 4
gpt4 key购买 nike

我似乎无法从扩展 Fragment 的类中获取 imageview 上的 onClick 事件。我在这里做错了什么?我对 Android 开发还比较陌生..

目前,当我添加 onClickListener 代码时,此代码给了我一个空指针异常

这是我的代码:

ImageView mImageView = (ImageView) v.findViewById(R.id.option_icon);
mImageView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {

}
});

这些图标放置在 ListView 中,该 ListView 放置在对话框上:

对话框的 ListView 和按钮:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ListView android:id="@+id/preset_list_view"
android:layout_height="wrap_content"
android:layout_width="fill_parent"/>
<Button
android:id="@+id/dialogButtonOK"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:text="@string/ok"
android:layout_marginTop="5dp"
android:layout_marginRight="5dp"
android:layout_below="@+id/image"/>
</LinearLayout>

ListView 中的项目( ImageView 和 TextView ):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<ImageView
android:id="@+id/option_icon"
android:clickable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher"
/>
<TextView
android:id="@+id/option_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/image"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:textSize="20dp" />
</RelativeLayout>

最佳答案

这一定是你试图在 v 引用的范围之外找到它的 ImageView 。

如果 ImageView 位于 ListView 内,那么您应该从适配器中添加 onClickListener

关于java - onClick 在对话框内的 ListView 中的 ImageView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20640271/

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