Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1.    b2.setOnClickListener(new View.OnClickListener() {
  2.                                 @Override
  3.                                 public void onClick(View view) {
  4.                                     Bundle informa = new Bundle();
  5.  
  6.                                     Intent i = new Intent(ChapterWise.this,SeeCorrectAns.class);
  7.                                     informa.putParcelableArrayList("correctanswerlist",sqa);
  8.                                     informa.putBoolean("myboolen",mqyestionlist);
  9.                                     i.putExtras(informa);
  10.                                     startActivity(i);
  11.                                 }
  12.                             });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement