0

初めての 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"/>
4

3 に答える 3

2

ListActivity を作成し、onListItemClick と notes_row.xml を使用しました。コードは私のために働きます。ただし、行全体がクリックに応答することを期待していると思います。 notes_row によると、テキスト自体をクリックする必要があります(行のどこにもありません)。

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" />

行全体がユーザーのクリックに応答するようになりました。

于 2012-07-06T21:06:54.510 に答える
2

これが誰にとっても役立つ場合の別の潜在的な解決策: リスト項目のそれぞれにボタンがあり、これにより onListItemClick イベントが発生しませんでした。Button をまったく同じように見える TextView に置き換えると、機能しました。

于 2013-05-12T12:34:10.043 に答える
0

OnItemClickListener を実装し、list.setOnItemClickListener を実行します。

public class Notepadv1 extends ListActivity implements OnItemClickListener { 

   onCreate() 
   {
        ....

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

    }

}
于 2012-07-06T20:46:27.123 に答える