【发布时间】:2016-05-04 02:40:33
【问题描述】:
我想在操作栏中添加徽章计数器并使其也可点击
getMenuInflater().inflate(R.menu.main_menu, menu);
MenuItem item = menu.findItem(R.id.action_notifications);
LayerDrawable icon = (LayerDrawable) item.getIcon();
Utils2.setBadgeCount(this, icon, 2);
return true;
错误:
java.lang.ClassCastException: android.graphics.drawable.BitmapDrawable cannot be cast to android.graphics.drawable.LayerDrawable
【问题讨论】:
-
如果我可以这个线程解决相反的问题,从 LayerDrawable 转换为 BitmapDrawable