Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1.     @Override
  2.     public void onListItemClick(ListView l, View v, int position, long id){
  3.         Intent i = new Intent(v.getContext(), DataPage.class);
  4.         startActivity(i);
  5.         Toast.makeText(getActivity(), "You selected " + position, Toast.LENGTH_LONG).show();
  6.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement