1、先上图后使用;
2、使用方法
先导入android-viewbadger.jar
然后直接在activity如下操作
View target = findViewById(控件id识别);//target为你想显示badges的控件
BadgeView badge = new BadgeView(this, target);badge.setText("1");
badge.show();//或者使用 badge .toggle();
扩展方法:setText(),
setTextColor(Color.BLUE),
setBadgeBackgroundColor(Color.YELLOW),
setTextSize(12),
toggle()等等;
3、资源下载地址:http://download.csdn.net/detail/shi508181017/5902419