Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.51 KB | None | 0 0
  1. AccountHeader  accountHeader = new AccountHeaderBuilder()
  2.                 .withActivity(this)
  3.                 .withTranslucentStatusBar(true)
  4.                 .withHeaderBackground(R.drawable.bg_1)
  5.                 .addProfiles( new ProfileDrawerItem()
  6.                     .withName(user)
  7.                     .withEmail(password).withIcon(getResources().getDrawable(R.drawable.sdslogo))
  8.                 )
  9.                 .withOnAccountHeaderListener((view, profile, currentProfile) -> false)
  10.                 .build();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement