Android:onListItemClick未在ListActivity中调用

时间:2012-07-06 20:39:47

标签: android onclick listactivity

我的第一个Android应用程序出现问题。

我已经将ListActivity子类化了,而且我没有运气获得重写的onListItemClick()来响应点击事件。我读过焦点可能是一个问题,但改变XML文件的焦点似乎不起作用。这是代码的相关部分。有人看到我有什么问题吗?

public class Notepadv1 extends ListActivity {
    private int mNoteNumber = 1;
    private NotesDbAdapter mDbHelper;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.notepad_list);
        mDbHelper = new NotesDbAdapter(this);
        mDbHelper.open();
        fillData();
    }

 private void fillData() {
    // Get all of the notes from the database and create the item list
    Cursor c = mDbHelper.fetchAllNotes();
    startManagingCursor(c);

    String[] from = new String[] { NotesDbAdapter.KEY_TITLE };
    int[] to = new int[] { R.id.text1 };


    SimpleCursorAdapter notes =
        new SimpleCursorAdapter(this, R.layout.notes_row, c, from, to);
    setListAdapter(notes);
}

@Override
public void onListItemClick (ListView l, View v, int position, long id){
    super.onListItemClick(l, v, position, id);

    AlertDialog alert = new AlertDialog.Builder(this).create();
    String message = "row clicked!";
    alert.setMessage(message);
    alert.show();

}

notepad_list.xml

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

  <ListView
      android:id="@android:id/list"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:dividerHeight="6dp"/>



  <TextView android:id="@android:id/empty"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/no_notes" />

</LinearLayout>

和notes_row.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView android:id="@+id/text1"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="60dp"
    android:focusable="false"/>

3 个答案:

答案 0 :(得分:2)

我创建了一个ListActivity,使用了你的onListItemClick和notes_row.xml。该代码适合我。但是,我相信你期望整行响应点击,根据notes_row你需要点击文本本身(不是行中的任何地方)。 / p>

尝试将notes_row.xml中的width属性更改为"match_parent"

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/text1"
    android:layout_height="60dp"
    android:layout_width="match_parent"
    android:focusable="false" />

现在整行都响应用户点击。

答案 1 :(得分:2)

另一个潜在的解决方案,如果这可以帮助任何人:我的每个列表项中都有一个Button,这阻止了我的onListItemClick事件被触发。用看起来完全相同的TextView替换Button使其工作。

答案 2 :(得分:0)

实现OnItemClickListener并执行list.setOnItemClickListener。

public class Notepadv1 extends ListActivity implements OnItemClickListener { 

   onCreate() 
   {
        ....

       ((ListView)findViewById(android.R.id.list)).setOnItemClickListener(this)

    }

}