# CTagView
**Repository Path**: cloay/CTagView
## Basic Information
- **Project Name**: CTagView
- **Description**: A costum view for display tags.
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2015-04-27
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
CTagView
========
A costum view display tags.
####How to use
1 Add CTagView in layout
```xml
```
2 And add the following code
```java
String[] tags = {"音乐", "文艺范", "科幻", "二逼青年", "搞笑", "清新", "猴子请来的逗比", "NBA", "卡哇伊", "电影", "自定义标签"};
CTagView tagView = (CTagView) findViewById(R.id.tag_view);
tagView.setOnTagClickListener(this);
tagView.setTags(tags);
```
