发布动态带标签 话题 @功能的EditText

最近项目中要求自己做一个发布话题和动态的功能,仿照微博的发布自己手撸了一个自定义EditText,支持话题标签添加,@某人标签,以及标签文字颜色的自定义,标签字符的自定义:直接上代码:

首先 先写atrrs文件:


    <attr name="topic_tag" format="string">

    <attr name="topic_text_color" format="color">

    <attr name="topic_person_color" format="color">

    <attr name="topic_person" format="string">

</declare-styleable>

然后直接上代码:

package com.modian.framework.ui.view;

import android.content.Context;

import android.content.res.TypedArray;

import android.graphics.Color;

import android.text.Editable;

import android.text.Spannable;

import android.text.TextUtils;

import android.text.TextWatcher;

import android.text.style.ForegroundColorSpan;

import android.util.AttributeSet;

import android.view.KeyEvent;

import android.view.View;

import androidx.annotation.NonNull;

import androidx.annotation.Nullable;

import com.modian.framework.R;

import java.util.ArrayList;

import java.util.List;

/**

* 发布话题自定义 EditText

*

*   

*            android:id="@+id/editText"

*            android:layout_width="match_parent"

*            android:layout_height="wrap_content"

*            app:topic_text_color="#A128CE"  话题标签颜色

*            app:topic_person_color="#E18A21" @某人 标签的颜色

*            app:topic_tag="6"  话题标签字符

*            app:topic_person="Y"/>  @某人字符

*

*/

public class MDTopicEditTextViewextends androidx.appcompat.widget.AppCompatEditTextimplements TextWatcher, View.OnKeyListener {

public static final  int TOPIC_TYPE_TOPIC =1;//话题标签

    public static final  int TOPIC_TYPE_PERSON =2;//话题标签@某人

    private static final StringTOPIC_TAG ="#"; //默认的话题标签前后标识为 #

    private static final int TOPIC_TEXT_COLOR = Color.parseColor("#FF0000"); //默认的话题标签文本颜色

    private static final int TOPIC_PERSON_COLOR = Color.parseColor("#FFCC00"); //默认的话题标签文本颜色

    private static final StringTOPIC_PERSON ="@"; //默认的话题@用户的标识为@

    private ListtopicList =new ArrayList<>(); //定义一个话题的list,存放插入的话题标签

    private Stringtopic_tag =TOPIC_TAG;

    private Stringtopic_person =TOPIC_PERSON;

    private int topic_text_color =TOPIC_TEXT_COLOR;

    private int topic_person_color =TOPIC_PERSON_COLOR;

    private int index = -1;

    private boolean isBack =false; //是否按了返回键

    public MDTopicEditTextView(@NonNull Context context) {

this(context,null);

    }

public MDTopicEditTextView(@NonNull Context context, @Nullable AttributeSet attrs) {

this(context,attrs, R.attr.editTextStyle);

    }

public MDTopicEditTextView(@NonNull Context context, @Nullable AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

        TypedArray typedArray = context.obtainStyledAttributes(attrs,R.styleable.MDTopicEditTextView);

        topic_tag = typedArray.getString(R.styleable.MDTopicEditTextView_topic_tag);

        if(TextUtils.isEmpty(topic_tag)) {

topic_tag =TOPIC_TAG;

        }

topic_person = typedArray.getString(R.styleable.MDTopicEditTextView_topic_person);

        if(TextUtils.isEmpty(topic_person)) {

topic_person =TOPIC_TAG;

        }

topic_text_color = typedArray.getColor(R.styleable.MDTopicEditTextView_topic_text_color,TOPIC_TEXT_COLOR);

        topic_person_color = typedArray.getColor(R.styleable.MDTopicEditTextView_topic_person_color,TOPIC_PERSON_COLOR);

        init();

    }

private void init() {

//添加文本变化监听

        this.addTextChangedListener(this);

    }

public void setTopic(String topic){

setTopic(topic,TOPIC_TYPE_TOPIC); //默认为话题标签

    }

/**

* 添加话题

    * @param topic 话题文本

*/

    public void setTopic(String topic,int type){

if(TextUtils.isEmpty(topic)){

return;

        }

String tagTopic ="";

        if(type ==TOPIC_TYPE_TOPIC) {

tagTopic =topic_tag + topic +topic_tag; //话题前后添加标签符号("#topic#")

        }else if(type ==TOPIC_TYPE_PERSON){

tagTopic =topic_person + topic; //话题前后添加标签符号("@topic")

        }

topicList.add(tagTopic);

        //获取当前光标的位置

        int selectionStart = getSelectionStart();

        //获取EditText上的文本内容

        Editable editable = getText();

        if(selectionStart >=0){

// 插入话题

            editable.insert(selectionStart,tagTopic+" ");

            //移动光标到最后

            setSelection(getSelectionStart());

            reFreshText(tagTopic);

        }

setOnKeyListener(this);

    }

/**

* 刷新UI,设置话题标签字体变色

    * @param tagTopic

    */

    private void reFreshText(String tagTopic) {

if (topicList.size() ==0)

return;

        // 重新设置span

        Editable editable = getText();

        int textLength = editable.length();

        int findPosition =0;

        for (int i =0; I

String objectText =topicList.get(i);

            while (findPosition <= textLength) {

// 获取文本开始下标

                findPosition = getText().toString().indexOf(objectText, findPosition);

                if (findPosition != -1) {

// 设置话题内容前景色高亮

                    ForegroundColorSpan colorSpan;

                    if(objectText.startsWith(topic_tag))

colorSpan=new ForegroundColorSpan(topic_text_color);

else

                        colorSpan=new ForegroundColorSpan(topic_person_color);

                    editable.setSpan(colorSpan, findPosition, findPosition + objectText.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

                    findPosition += objectText.length();

                }else {

break;

                }

}

}

}

/**

* 光标改变监听

    * @param selStart

    * @param selEnd

    */

    @Override

    protected void onSelectionChanged(int selStart, int selEnd) {

super.onSelectionChanged(selStart, selEnd);

        if(topicList ==null ||topicList.size() ==0){

return;

        }

int startPositon =0;

        int endPositon =0;

        String topicText ="";

        if(!isBack) {

for (int i =0; I

topicText =topicList.get(i);

                int length = getText().toString().length();

                startPositon = getText().toString().indexOf(topicText, startPositon);

                endPositon = startPositon + topicText.length();

                if (startPositon == -1) {

return;

                }

if (selStart > startPositon && selEnd <= endPositon-1) {

if ((endPositon +1) > length) {

setSelection(endPositon);

                    }else {

setSelection(endPositon +1);

                    }

}

startPositon = endPositon;

            }

}

isBack =false;

    }

@Override

    public void beforeTextChanged(CharSequence s, int start, int count, int after) {

}

@Override

    public void onTextChanged(CharSequence s, int start, int before, int count) {

}

@Override

    public void afterTextChanged(Editable editablede) {

}

/**

* 键盘back键监听

    * @param v

    * @param keyCode

    * @param event

    * @return

    */

    @Override

    public boolean onKey(View v, int keyCode, KeyEvent event) {

if (keyCode == KeyEvent.KEYCODE_DEL && event.getAction() == KeyEvent.ACTION_DOWN) {

//返回键导致光标的移动

            isBack =true;

            int selectionStart = getSelectionStart();

            int selectionEnd = getSelectionEnd();

            //如果光标起始和结束在同一位置,说明是选中效果,直接返回 false 交给系统执行删除动作

            if (selectionStart != selectionEnd) {

if(index != -1) {

topicList.remove(index);

                    index = -1;

                }

return false;

            }

Editable editable = getText();

            String content = editable.toString();

            int lastPos =0;

            //遍历判断光标的位置

            for (int i =0; I

String topic =topicList.get(i);

                lastPos = content.indexOf(topic, lastPos);

                if (lastPos != -1) {

if (selectionStart !=0 && selectionStart > lastPos && selectionStart <= (lastPos + topic.length())) {

//选中话题

                        setSelection(lastPos, lastPos + topic.length());

                        index = I;

return true;

                    }

}

lastPos += topic.length();

            }

}

return false;

    }

}

在xml中 直接使用就行啦:

<com.modian.framework.ui.view.MDTopicEditTextView

           android:id="@+id/editText"

            android:layout_width="match_parent"

           android:layout_height="wrap_content"

           app:topic_text_color="#A128CE"  话题标签颜色

            app:topic_person_color="#E18A21" @某人 标签的颜色

           app:topic_tag="6"  话题标签字符

           app:topic_person="Y"/>  @某人字符

来几张效果图:

image.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342