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

答えて

3

! 1行追加...

.withSelectionListEnabledForSingleProfile(false) 
関連する問題