mikepenzマテリアル引き出しにカスタムヘッダーを使用しています。どうすればヘッダのonClickを取得できますか? onDrawerItemClickListenerを使用してカスタムヘッダーのクリックイベントを取得できますか?Mikepenzマテリアル引き出しカスタムヘッダー
result = new DrawerBuilder()
.withActivity(this)
.withSelectedItem(-1)
.withSliderBackgroundColorRes(R.color.white)
.withToolbar(toolbar)
.withStickyHeader(R.layout.nav_header)
.withTranslucentStatusBar(true)
.withDisplayBelowStatusBar(true)
.addDrawerItems(
//Drawer Items
).withOnDrawerItemClickListener(new Drawer.OnDrawerItemClickListener() {
@Override
public boolean onItemClick(View view, int position, IDrawerItem drawerItem) {
})
.build();
私はアカウントヘッダーを使用していません。私はカスタムヘッダーを使用しています。だから私はwithOnAccountHeaderListenerを使用することはできません。 –