自动换行的标签。

  • 23
  •  Star 353
  •  Fork 98

kingideayou/TagCloudView

 Code  Issues 4  Pull requests 0  Wiki  Pulse  Graphs
支持 SingleLine 模式的标签云效果 http://kingideayou.github.io/TagCloudView/
  •  47 commits
  •  branches
  •  releases
  • contributor
  1.  Java 100.0%
Java
New file Upload files Find file
HTTPS 
 
 
Download ZIP
Branch:  master 
New pull request
Latest commit 6c47b27 on Dec 18, 2015  kingideayou  Merge branch 'master' of  https://github.com/kingideayou/TagCloudView
.idea 修改设置字号方法 2 months ago
apk 添加 Demo apk 文件 7 months ago
app 修改设置字号方法 2 months ago
gradle/wrapper 效果实现 7 months ago
imgs 添加二维码 6 months ago
tagcloudview 修改设置字号方法 2 months ago
.gitignore 修改设置字号方法 2 months ago
README.md Update README.md 5 months ago
TagCloudView.iml 修改设置字号方法 2 months ago
gradle.properties prepare for release to jcenter 7 months ago
gradlew prepare for release to jcenter 7 months ago
gradlew.bat 效果实现 7 months ago
settings.gradle 修改 发送到 JCenter 配置 7 months ago

 README.md

TagCloudView 

支持 SingleLine 模式的标签云效果,轻松实现知乎问题话题列表
标签云效果,可以设置为 SingleLine 模式,丰富的自定义样式选择。
只需要一行代码即可设置 SingleLine 模式:app:tcvSingleLine="true" true 为 SingleLine 模式,false 为默认标签云模式

Demo apk 下载:

ListView 效果
扫码或点我下载

Update 更新

  • 版本号1.0.2:fix #4 添加切换单行多行方法 TagCloudView.singleLine(true)

How to use 如何使用

Gradle

使用 JCenter 在项目的 build.gradle 中添加如下代码

  compile 'com.github.kingideayou:tagcloudview:1.0.2'

Import

首先下载 tagView,将 tagView 文件夹拷贝到项目的目录下面,然后在setting.gradle文件中增加文件夹名称

  include ":tagview"

然后在我们需要依赖这个模块的module中的build.gradle文件中加入如下代码:

  compile project(':tagview')

导入成功后,只需要在 XML 文件中添加如下视图

  

在 Activity 中调用如下方法即可

  List tags = new ArrayList<>();
    for (int i = 0; i < 20; i++) {
        tags.add("标签" + i);
    }

  TagCloudView tagCloudView1 = (TagCloudView) findViewById(R.id.tag_cloud_view_1);
  tagCloudView1.setTags(tags);
  tagCloudView1.setOnTagClickListener(this);
  tagCloudView1.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            Toast.makeText(getApplicationContext(), "TagView onClick",
                    Toast.LENGTH_SHORT).show();
        }
    });

   @Override
  public void onTagClick(int position) {
    if (position == -1) {
        Toast.makeText(getApplicationContext(), "点击末尾文字",
                Toast.LENGTH_SHORT).show();
    } else {
        Toast.makeText(getApplicationContext(), "点击 position : " + position,
                Toast.LENGTH_SHORT).show();
    }
  }

效果图

 

动图展示:

License

Copyright 2015 NeXT

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

你可能感兴趣的:(自动换行的标签。)