Guest User

Untitled

a guest
Feb 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. @Override
  2. protected void onCreatePrimaryActions(ArrayObjectAdapter adapter) {
  3. // Order matters, super.onCreatePrimaryActions() will create the play / pause action.
  4. // Will display as follows:
  5. // play/pause, previous, rewind, fast forward, next
  6. // > /|| |< << >> >|
  7. super.onCreatePrimaryActions(adapter);
  8. adapter.add(mSkipPreviousAction);
  9. adapter.add(mRewindAction);
  10. adapter.add(mFastForwardAction);
  11. adapter.add(mSkipNextAction);
  12. }
Add Comment
Please, Sign In to add comment