-1
Как я могу избавиться от выпадающего меню, которое показывает связанные аккаунты для AccountHeader, используя библиотеку Material Drawer от Mike Penz?Android Material Drawer удалить заголовок учетной записи dropdwon
Мой текущий код:
// Create the AccountHeader
AccountHeader headerResult = new AccountHeaderBuilder()
.withActivity(this)
//.withHeaderBackground(R.drawable.header)
.addProfiles(
new ProfileDrawerItem().withName(displayName).withEmail(email).withIcon(firebaseUser.getPhotoUrl())
)
.withCompactStyle(true)
.withTextColor(getResources().getColor(R.color.itemTextColor))
.build();