h4de5ing / richeditor-android

RichEditor for Android is a beautiful Rich Text WYSIWYG Editor for Android.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RichEditor for Android

License Download

RichEditor for Android is a beautiful Rich Text WYSIWYG Editor for Android.

Supported Functions

Toolbar

  • Bold
  • Italic
  • Subscript
  • Superscript
  • Strikethrough
  • Underline
  • Justify Left
  • Justify Center
  • Justify Right
  • Heading 1
  • Heading 2
  • Heading 3
  • Heading 4
  • Heading 5
  • Heading 6
  • Undo
  • Redo
  • Indent
  • Outdent
  • Insert Image
  • Insert Link
  • Text Color
  • Text Background Color

Milestone

  • Blockquote

Attribute change of editor

  • Font Size
  • Background Color
  • Width
  • Height

Demo

Demo

Samples

How do I use it?

Setup

Gradle
repositories {
    jcenter()
}

dependencies {
    compile 'jp.wasabeef:richeditor-android:0.0.2@aar'
}

Functions

Bold

RichEditor editor = (RichEditor) findViewById(R.id.editor);
editor.setBold();

Italic

RichEditor editor = (RichEditor) findViewById(R.id.editor);
editor.setItalic();

Insert Image

RichEditor editor = (RichEditor) findViewById(R.id.editor);
editor.insertImage("https://raw.githubusercontent.com/wasabeef/art/master/twitter.png","twitter");

Text Change Listener

RichEditor editor = (RichEditor) findViewById(R.id.editor);
editor. setOnTextChangeListener(new RichEditor.OnTextChangeListener() {
  @Override
  public void onTextChange(String text) {
    // Do omething
     Log.d("RichEditor", "Preview " + text);
  }
});

Others
Please refer the samples for usage.

Requirements

Android 4+

Applications using RichEditor for Android

Please ping me or send a pull request if you would like to be added here.

Icon Application
Ameba Ownd

Developed By

Daichi Furiya (Wasabeef) - dadadada.chop@gmail.com

Follow me on Twitter

Thanks

  • Inspired by ZSSRichTextEditor in nnhubbard.

License

Copyright 2015 Wasabeef

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.

About

RichEditor for Android is a beautiful Rich Text WYSIWYG Editor for Android.

License:Apache License 2.0


Languages

Language:Java 63.7%Language:JavaScript 22.7%Language:CSS 11.7%Language:HTML 1.9%