ListView listView = findViewById(R.id.listView); listView.setClickable(true); listView.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView parent, View view, int position, long id) { // Handle click event } });
import android.widget.AdapterView; ListView listView = findViewById(R.id.listView); listView.setClickable(false); listView.setOnItemClickListener(null);In this example, a ListView with the ID "listView" is obtained from the layout file and set to not be clickable. The OnItemClickListener is also set to null. Library: android.widget.ListView is part of the Android SDK.