change
<ListView android:id="@android:id/list"
to
<ListView android:id="@+id/android:list"
expand your activity as ListActivity
public class myActivity extends ListActivity {
then override the onListItemClick function.
@Override
protected void onListItemClick(ListView l, View v, final int position, long id) {
super.onListItemClick(l, v, position, id);
AlertDialog.Builder adb=new AlertDialog.Builder(ListAllTracks.this);
adb.setTitle("LVSelectedItemExample");
adb.setPositiveButton("Ok", null);
adb.show();
}
source
share