public void onItemClick(AdapterView<?> parent, View itemClicked, int position, long id) { Toast toast = Toast.makeText(getApplicationContext(), position, Toast.LENGTH_SHORT); toast.show(); } Position is the number (position of the element), I need to display text from the element. 
Ie when clicking I need to display the text which is highlighted in bold in the listView