Guest User

Untitled

a guest
Feb 19th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. public interface InteractionListener {
  2. void setToolbarTitle(@StringRes int title);
  3. }
  4.  
  5. @Override
  6. public void setToolbarTitle(@StringRes int title) {
  7. if (getSupportActionBar() != null) {
  8. getSupportActionBar().setTitle(title);
  9. }
  10. }
  11.  
  12. @Override
  13. public void onStart() {
  14. super.onStart();
  15. listener.setToolbarTitle(title);
  16. }
Add Comment
Please, Sign In to add comment