2016-10-01 5 views
-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(); 

ответ

3

Fixed его! Добавлена ​​одна линия ...

.withSelectionListEnabledForSingleProfile(false)