我不擅长设计。我需要以下布局的帮助。 1 - 如何在付费(订阅)旁边添加图像,就像我们添加徽章一样? 2 - 如何设置视图,就像我们在下面的图像中选择项目时一样?在它的开头显示一个浅蓝色标记。 3 - 如何添加底部蓝色页脚线?
答案 0 :(得分:0)
在初始化导航抽屉时,我这样做了。
gallery=(TextView) MenuItemCompat.getActionView(navigationView.getMenu().
findItem(R.id.menu__pay_subscription));
initializeCountDrawer();
然后是方法。
private void initializeCountDrawer(){
gallery.setGravity(Gravity.CENTER_VERTICAL);
gallery.setTypeface(null, Typeface.BOLD);
gallery.setTextColor(getResources().getColor(R.color.colorAccent));
Drawable img = context.getResources().getDrawable( R.drawable.cards);
img.setBounds( 0, 0, 200, 40 );
gallery.setCompoundDrawables( img, null, null, null);
}