Home

Awesome

TagEditText,类似微博标签的文本控件

TagEditText实现了显示类似微博中的活动标签, 其特点是将一段文字中用'#'包裹的部分以特殊的颜色显示,并能进行点击交互。

<p align="center"> <img src="/art/tagedittext.png" alt="TagEditText" /> </p>

主要功能

使用

说明

库中主要包括两个控件:

主要用法

TagTextView

 <cn.droidlover.tagedittext.TagTextView
        android:id="@+id/tagTextView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="16dp"
        android:textSize="14sp" />

在java中

tagTextView
           .tagColor(Color.RED)        //设置标签颜色
           .tag("#", "#");             //设置前后匹配符

tagTextView.setCallback(new TagSpan.Callback<String>() {     //设置标签点击事件
    @Override
    public void onClick(String data) {
        toast(data);
    }
})

tagTextView.text(str);                      //设置内容

TagEditText

<cn.droidlover.tagedittext.TagEditText
        android:id="@+id/tagEditText"
        android:layout_width="match_parent"
        android:hint="TagEditText"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        android:background="@android:color/transparent"
        android:padding="16dp"
        android:textSize="14sp" />

在java中

tagEditText
        .tag("#", "#")              //设置前后匹配符
        .tagColor(Color.BLUE);      //设置标签颜色
tagEditText.appendText("");              //追加文本
tagEditText.getTagList();                //获取标签集合
tagEditText.removeText("");              //删除指定