Guest User

Untitled

a guest
Jan 20th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. public void changesong(View view)
  2. {
  3. setContentView(R.layout.playlist);
  4. Intent i = new Intent(getApplicationContext(), PlayListActivity.class);
  5. startActivity(i);
  6.  
  7.  
  8. }
  9.  
  10. Intent i = new Intent(your_present_class.this, PlayListActivity.class);
  11.  
  12. Intent i = new Intent(this, PlayListActivity.class);
  13.  
  14. <activity android:name = ".PlayListActivity" />
  15.  
  16. Intent i = new Intent(getApplicationContext(), PlayListActivity.class);
  17. startActivity(i);
  18.  
  19. Intent i = new Intent(this, PlayListActivity.class);
  20.  
  21. <activity android:name = ".PlayListActivity" />
Add Comment
Please, Sign In to add comment