I want to make all my list items in the listview open up into a new page, so each listview item opens up onto a new black page that I can use. I don\'t know how to implement
You use the onListItemClick function to set up your Intent that loads the next activity and passes any data across.
public void onListItemClick(ListView parent, View view, int position, long id)
{
Intent intent = new Intent(this, AnotherActivity.class);
intent.putExtra("position", position);
startActivity(intent);
}