public void onListItemClick(ListView l, View v, int position, long id)
{
// Do something when a list item is clicked
if ( position == 5)
{
Intent myIntent = new Intent(Categories.this,Adventure.class);
startActivity(myIntent);
}
}
how do I select a listview item and bring me to a new page?