I have this below code access the ListView item value into string and display it in alert?
ListView shot = getListView(); shot.setOnItemClickListener(this);
Maybe you can try this
String data = (String)shot.getItemAtPosition(arg2); AlertDialog.Builder adb = new AlertDialog.Builder(arg1.getContext()); adb.setMessage(data).show();