ListView setOnItemClickListener不会触发

时间:2015-09-21 08:34:15

标签: android eclipse listview onitemclicklistener

单击某个项目时,单击侦听器不起作用。

在这个程序中,前两个arraylist使用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_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="add" />

<ListView
    android:id="@+id/listView1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

detail.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" android:focusableInTouchMode="false" android:focusable="false">


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="50dip"
    android:layout_weight="1" android:focusable="false" android:focusableInTouchMode="false">
    <Button android:id="@+id/button2" android:layout_width="0dp" android:layout_height="wrap_content" android:text="Button"/>

    <TextView
        android:id="@+id/one"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        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_width="0dip"
        android:layout_height="wrap_content"
        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_width="fill_parent"
    android:layout_height="2dip" android:background="#ff7f7f"/>

4 个答案:

答案 0 :(得分:2)

这是因为您的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_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants" >


<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="50dip"
    android:layout_weight="1" android:focusable="false" android:focusableInTouchMode="false">
    <Button android:id="@+id/button2" android:layout_width="0dp" android:layout_height="wrap_content" android:text="Button"/>

    <TextView
        android:id="@+id/one"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:gravity="center"
        android:text="name"
        android:textSize="20dip" android:layout_gravity="center"/>

    <TextView
        android:id="@+id/two"
        android:layout_width="0dip"
        android:layout_height="wrap_content"
        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_width="fill_parent"
    android:layout_height="2dip" android:background="#ff7f7f"/>

答案 1 :(得分:0)

如果您已在CustomAdapter类中为Button in detail.xml实现了onClik Listener,请将其删除。

因为您无法单击listview的项目单击并且单击customAdaptor的视图。

答案 2 :(得分:0)

对于detail.xml中的TextViews和Button,添加这段代码

android:focusableInTouchMode="false"
android:clickable="false"
android:focusable="false"

答案 3 :(得分:0)

列表视图中可能有多个可以点击的视图。 最佳解决方案是:

1)在列表项的顶级容器布局中使用android:descendantFocusability =“blocksDescendants”。

2)现在列表视图中的任何视图都需要点击,请使用以下属性:

            android:focusable="false"
            android:focusableInTouchMode="false"

3)在点击时使用interface to fragment或activity将点击侦听器设置为视图和回调。