Мне интересно, как добавить (и контролировать) поле CheckBox для ListAdctivity моего ListActivity. Вот мой код, который я сейчас использую для его настройки:
@ Override
public void onCreate (BundlevedInstanceState) {
super.onCreate (savedInstanceState);
setContentView (R.layout.music);
String[] proj = { MediaStore.Audio.Media._ID,
MediaStore.Audio.Media.DATA,
MediaStore.Audio.Media.DISPLAY_NAME,
MediaStore.Video.Media.SIZE };
musicCursor = this.getContentResolver().query(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, proj, null, null, null);
startManagingCursor(musicCursor);
// THE DESIRED COLUMNS TO BE BOUND
String[] columns = new String[] { MediaStore.Audio.Media.DISPLAY_NAME }; //, MediaStore.Audio.Media.SIZE
// THE XML DEFINED VIEWS WHICH THE DATA WILL BE BOUND TO
int[] to = new int[] { R.id.text1 }; //, R.id.text2 , R.id.musicChecked
mAdapter = new SimpleCursorAdapter(this, R.layout.song_item, musicCursor, columns, to);
// SET THIS ADAPTER AS YOUR LISTACTIVITY'S ADAPTER
// i.e. the UI element
setListAdapter(mAdapter);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
Toast.makeText(this, "You selected: " + Integer.toString(position), Toast.LENGTH_LONG).show();
}
// music.xml
<ListView android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:drawSelectorOnTop="false"
android:fastScrollEnabled="true"
/>
<TextView android:id="@android:id/empty"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="No data"/>
// song_item.xml
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingTop="5px"
android:paddingBottom="5px">
<CheckBox android:id="@+id/musicChecked"
android:text=""
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
/>
<TextView android:id="@+id/text1"
android:textSize="16sp"
android:textStyle="bold"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="15px"
android:paddingBottom="15px"/>
</LinearLayout>
Сейчас происходит то, что список генерируется правильно, с флажками и названиями песен. Тем не менее, мой onItemClick не работает с добавленным CheckBox «musicChecked» (однако, если я удаляю его из XML, я вижу тост). Я хочу иметь возможность щелкнуть по полю и иметь флажок CheckBox true / false.
Спасибо за любую помощь, ребята.