如何摆脱使用mike penz的材料抽屉库显示accountheader的连接帐户的下拉菜单?
我的当前代码:

// 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();

最佳答案

修理它!添加了一行…

.withSelectionListEnabledForSingleProfile(false)

10-08 17:55