Android 标签群组 TagGroup
- 授权协议: MPL
- 开发语言: Java
- 操作系统: Android
- 软件首页: http://git.oschina.net/xiao-lifan/TagGroup
- 软件文档: http://git.oschina.net/xiao-lifan/TagGroup
软件介绍
TagGroup 是标签群组,支持文字和程序内部图片。
1、TagGroup属性介绍
<com.xiaofan.taggroup.TagGroup android:id="@+id/tagGroup" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#f08070" app:tagBackgroundColor="#ffffff" app:tagCornerRadius="6dp" app:tagHorizontalPadding="8dp" app:tagHorizontalSpace="8dp" app:tagStrokeColor="#000000" app:tagTextColor="#000000" app:tagTextSize="16sp" app:tagVerticalPadding="4dp" app:tagVerticalSpace="8dp" />
tagBackgroundColor:标签背景色;
tagCornerRadius:标签圆角半径;
tagHorizontalPadding:标签水平方向内边距;
tagHorizontalSpace:标签之间的水平间距;
tagStrokeColor:标签的描边颜色;
tagTextColor:标签文字颜色;
tagTextSize:标签文字大小;
tagVerticalPadding:标签竖直方向内边距;
tagVerticalSpace:标签之间的竖直边距。
2、添加标签
ArrayList<Tag> tags = new ArrayList<>();
for (int i = 0; i < 7; i++) {
Tag tag = new Tag();
tag.setType(Tag.TYPE_TEXT);
tag.setTagText("tag" + i);
tags.add(tag);
}
Tag tag = new Tag();
tag.setType(Tag.TYPE_ICON);
tag.setIconID(R.drawable.icon_apple);
tags.add(tag);
tag = new Tag();
tag.setType(Tag.TYPE_ICON);
tag.setIconID(R.drawable.icon_banana);
tags.add(tag);
tag = new Tag();
tag.setType(Tag.TYPE_ICON);
tag.setIconID(R.drawable.icon_pear);
tags.add(tag);
tag = new Tag();
tag.setType(Tag.TYPE_ICON);
tag.setIconID(R.drawable.icon_more);
tags.add(tag);
tagGroup.setTags(tags);3、绑定标签点击事件监听器
需要实现TagGroup的OnTagClickListener接口,然后调用setOnTagClickListener设置监听器即可。
JavaScript编程精解
Marijn Haverbeke / 徐涛 / 机械工业出版社华章公司 / 2012-10-1 / 49.00元
如果你只想阅读一本关于JavaScript的图书,那么本书应该是你的首选。本书由世界级JavaScript程序员撰写,JavaScript之父和多位JavaScript专家鼎力推荐。本书适合作为系统学习JavaScript的参考书,它在写作思路上几乎与现有的所有同类书都不同,打破常规,将编程原理与运用规则完美地结合在一起,而且将所有知识点与一个又一个经典的编程故事融合在一起,读者可以在轻松的游戏式......一起来看看 《JavaScript编程精解》 这本书的介绍吧!
