Advertisement
Guest User

last bit!

a guest
Jul 20th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. doneButton = (Button) findViewById(R.id.doneButton);
  2. doneButton.setOnClickListener(new View.OnClickListener() {
  3. @Override
  4. public void onClick(View v) {
  5. saveMeme();
  6. Intent intent = new Intent(EditorActivityG.this, MainMenuActivity.class);
  7. startActivity(intent);
  8. }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement