ListView setOnItemClickListener 不触发
Posted
技术标签:
【中文标题】ListView setOnItemClickListener 不触发【英文标题】:ListView setOnItemClickListener Does Not Trigger 【发布时间】:2015-12-17 21:14:21 【问题描述】:单击项目时单击侦听器不起作用。
在这个程序中,前两个数组列表使用 update() 更新。然后将此列表视图发送到其他类以制作列表视图。但是点击每个项目并没有烤出任何东西。
public class BlockActivity extends Activity
ListView lv;
ArrayList<String> contactnumber= new ArrayList<String>();
ArrayList<String> contactname= new ArrayList<String>();
public static SQLiteDatabase database;
SQLiteDatabase myDB= null;
CustomAdapter adapter;
ArrayList<String> contactnum= new ArrayList<String>();
ArrayList<String> contactnam= new ArrayList<String>();
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button pickContact = (Button) findViewById(R.id.button1);
update();
lv=(ListView) findViewById(R.id.listView1);
adapter = new CustomAdapter(this, contactnam, contactnum);
lv.setAdapter(adapter);
lv.setOnItemClickListener(new OnItemClickListener()
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id)
/*new AlertDialog.Builder(view.getContext())
.setMessage("Something here")
.setNegativeButton("Close", null).show();*/
Toast.makeText(BlockActivity.this,
"Item in position " + position + " clicked", Toast.LENGTH_LONG).show();
);
pickContact.setOnClickListener(new OnClickListener()
.
.
.
main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_
android:layout_
android:text="add" />
<ListView
android:id="@+id/listView1"
android:layout_
android:layout_ >
</ListView>
detail.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="vertical" android:focusableInTouchMode="false" android:focusable="false">
<LinearLayout
android:layout_
android:layout_
android:layout_weight="1" android:focusable="false" android:focusableInTouchMode="false">
<Button android:id="@+id/button2" android:layout_ android:layout_ android:text="Button"/>
<TextView
android:id="@+id/one"
android:layout_
android:layout_
android:layout_weight="1"
android:gravity="center"
android:text="name"
android:textSize="20dip" android:layout_gravity="center" android:focusable="false" android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/two"
android:layout_
android:layout_
android:layout_weight="1"
android:gravity="center"
android:text="name"
android:textSize="20dip" android:layout_gravity="center" android:focusable="false" android:focusableInTouchMode="false"/>
</LinearLayout>
<Button
android:id="@+id/button1"
android:layout_
android:layout_ android:background="#ff7f7f"/>
【问题讨论】:
列表项是“detail.xml”吗? 在您的 ListView 中添加android:focusable="false" android:clickable="false"
放入项目布局android:focusable="false"
我将它们设置为 false 但注意到变化
【参考方案1】:
那是因为你的Button
,在你的列表项root布局中添加android:descendantFocusability="blocksDescendants"
detail.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="vertical"
android:descendantFocusability="blocksDescendants" >
<LinearLayout
android:layout_
android:layout_
android:layout_weight="1" android:focusable="false" android:focusableInTouchMode="false">
<Button android:id="@+id/button2" android:layout_ android:layout_ android:text="Button"/>
<TextView
android:id="@+id/one"
android:layout_
android:layout_
android:layout_weight="1"
android:gravity="center"
android:text="name"
android:textSize="20dip" android:layout_gravity="center"/>
<TextView
android:id="@+id/two"
android:layout_
android:layout_
android:layout_weight="1"
android:gravity="center"
android:text="name"
android:textSize="20dip" android:layout_gravity="center"/>
</LinearLayout>
<Button
android:id="@+id/button1"
android:layout_
android:layout_ android:background="#ff7f7f"/>
【讨论】:
【参考方案2】:如果您在detail.xml 中的Button 的CustomAdapter 类中实现了onClik 侦听器,请删除它。
因为你不能同时点击 listview 的 item click 和 customAdaptor 的 view click。
【讨论】:
【参考方案3】:对于 detail.xml
中的 TextViews 和 Button 添加这段代码
android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"
【讨论】:
【参考方案4】:列表视图中可能有多个可点击的视图。 最佳解决方案是:
1) 在列表项的***容器布局中使用 android:descendantFocusability="blocksDescendants"。
2) 现在列表视图中的任何视图都需要可点击,请使用以下属性:
android:focusable="false"
android:focusableInTouchMode="false"
3) 将点击侦听器设置为视图,并在点击时使用接口对片段或活动进行回调。
【讨论】:
以上是关于ListView setOnItemClickListener 不触发的主要内容,如果未能解决你的问题,请参考以下文章