Android 富文本编辑器

由于公司产品需求原因,需要一个高度自定义的富文本编辑器。

原本想本着不重复造轮子的想法去网上找,但找到的要么就是功能强大的自由度却太低,要么自由度很高的代码稳定性却又很差,代码稳定的功能上又差了一点……最终没办法了,只能自己写一个。

我们需要的富文本编辑器可能会存在插入图片/视频/音频,甚至后期还有可能在文章中插入广告模块。所以用WebView调用js的方案就直接pass掉——虽然实现简单很多,但是呈现效果差,又没办法支持自定义View(主要用于支持广告模块),所以后来就选择了用布局容器+View组合的思路来实现。

废话不多说,先上GitHub主页 RichEditor

build.gradle

dependencies {
    implementation'com.github.dydytd3400:RichEditor:1.0.1'
}

下面是简单的使用示例
Simple example:

main_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <android.support.constraint.ConstraintLayout
        android:id="@+id/relativeLayout"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@+id/guideline"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_weight="1">

        <LinearLayout
            android:id="@+id/button_bar"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:gravity="center_vertical"
            android:orientation="horizontal"
            app:layout_constraintBottom_toTopOf="@+id/editor"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_weight="1"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_bias="1.0">

            <TextView
                android:id="@+id/bold_btn"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:layout_margin="4dp"
                android:background="#a6f6a6"
                android:gravity="center"
                android:text="B" />

            <TextView
                android:id="@+id/italic_btn"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:layout_margin="4dp"
                android:background="#a6f6a6"
                android:gravity="center"
                android:text="i" />

            <TextView
                android:id="@+id/underline_btn"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:layout_margin="4dp"
                android:background="#a6f6a6"
                android:gravity="center"
                android:text="U" />

            <TextView
                android:id="@+id/strike_btn"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:layout_margin="4dp"
                android:background="#a6f6a6"
                android:gravity="center"
                android:text="S" />

            <TextView
                android:id="@+id/img_btn"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:layout_margin="4dp"
                android:background="#a6f6a6"
                android:gravity="center"
                android:text="img" />

            <TextView
                android:id="@+id/video_btn"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:layout_margin="4dp"
                android:background="#a6f6a6"
                android:gravity="center"
                android:text="video" />

            <TextView
                android:id="@+id/audio_btn"
                android:layout_width="35dp"
                android:layout_height="35dp"
                android:layout_margin="4dp"
                android:background="#a6f6a6"
                android:gravity="center"
                android:text="audio" />
        </LinearLayout>

        <android.support.constraint.Guideline
            android:id="@+id/line"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            app:layout_constraintGuide_percent="0.2" />

        <com.echoleaf.richeditor.RichEditor
            android:id="@+id/editor"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/line" />
    </android.support.constraint.ConstraintLayout>


    <TextView
        android:id="@+id/html_text"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#eeeeee"
        android:text="dfsdfsdfsdfsdf"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="@+id/guideline"
        app:layout_constraintVertical_bias="1.0"
        app:layout_constraintVertical_weight="1" />

    <android.support.constraint.Guideline
        android:id="@+id/guideline"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        app:layout_constraintGuide_percent="0.5" />
</android.support.constraint.ConstraintLayout>

MainActivity.class

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    RichEditor mEditor;
    TextView mHtmlText;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ViewGroup buttonGroup = findViewById(R.id.button_bar);
        mHtmlText = findViewById(R.id.html_text);
        mEditor = findViewById(R.id.editor);
        int childCount = buttonGroup.getChildCount();
        for (int i = 0; i < childCount; i++) {
            buttonGroup.getChildAt(i).setOnClickListener(this);
        }
        //RichEditor初始化配置,均为可选。
        //也可全部直接使用默认配置:mEditor.config().build();
        mEditor.config()
                .focusChangeListener(new View.OnFocusChangeListener() {
                    @Override
                    public void onFocusChange(View v, boolean hasFocus) {
                        //返回选定区域是否有指定样式
                        findViewById(R.id.bold_btn).setBackgroundColor(mEditor.isBold() ? Color.RED : Color.GREEN);
                        findViewById(R.id.italic_btn).setBackgroundColor(mEditor.isItalic() ? Color.RED : Color.GREEN);
                        findViewById(R.id.underline_btn).setBackgroundColor(mEditor.isUnderline() ? Color.RED : Color.GREEN);
                        findViewById(R.id.strike_btn).setBackgroundColor(mEditor.isStrike() ? Color.RED : Color.GREEN);
                    }
                })
                .contentChangeListener(new OnContentChangeListener() {
                    @Override
                    public void onContentChanged(RichView view, boolean removed) {
                        mHtmlText.setText(mEditor.toHtml());//展示最终转换的html文本
                    }
                })
                .pieceChangeListener(new SimplePieceChangeListener())
                .selectionActionMenu(new SelectionActionMenuCreator() {
                    @Override
                    public ActionMode.Callback create(Context context, EditText editText) {
                        return new SimpleSelectionActionMenu(context, editText);
                    }

                    @Override
                    protected ActionMode.Callback2 create2(Context context, EditText editText) {
                        return new SimpleSelectionActionMenu(context, editText);
                    }
                })
                .defaultSize(12)
                .defaultColor(Color.BLUE)
                .build();
    }


    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.bold_btn:
                mEditor.bold();//将所选文本设置为粗体,若已经是粗体,则取消粗体效果
                break;
            case R.id.italic_btn:
                mEditor.italic();//将所选文本设置为斜体,若已经是斜体,则取消斜体效果
                break;
            case R.id.underline_btn:
                mEditor.underline();//将所选文本添加下划线,若已经有下划线,则取消下划线效果
                break;
            case R.id.strike_btn:
                mEditor.strike();//将所选文本添加删除线,若已经有删除线,则取消删除线效果
                break;
            case R.id.img_btn:
                //可以通过类似方法添加任意View,无论是否实现RichView或RichText接口均可添加。
                //如果该View实现了RichView或者RichText接口,那么RichEditor则会通过调用对应接口实现来组装为text文本或html文本
                ImageView image = new ImageView(this);
                LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT);
                image.setLayoutParams(layoutParams);
                image.setImageResource(R.mipmap.simple_image);
                mEditor.insert(image);
                break;
            case R.id.video_btn:
                mEditor.setTextSize(15);
                break;
            case R.id.audio_btn:
                mEditor.setTextColor(Color.RED);
                break;
        }
    }

}

K365视频

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

推荐阅读更多精彩内容