-1
マイクペンツのMaterial Drawerライブラリを使用してAccountHeaderに接続されたアカウントを表示するドロップダウンメニューを削除するにはどうすればよいですか?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();