Skip to content

niendo1/richeditor-android

 
 

Repository files navigation

Logo

Android Arsenal License Apache 2.0 JitPack-Lib JavaDoc


This is a fork, which tries to merge changes from Andrew-Chen-Wang/RichEditorView


RichEditor for Android is a beautiful HTML WYSIWYG Editor for Android based on webview.

Supported Functions

Toolbar

  • (new?) Remove Format
  • Bold
  • Italic
  • Subscript
  • Superscript
  • Strikethrough
  • Underline
  • Justify Left
  • Justify Center
  • Justify Right
  • Blockquote
  • (new) Pre-Section
  • Heading 1
  • Heading 2
  • Heading 3
  • Heading 4
  • Heading 5
  • Heading 6
  • Undo
  • Redo
  • Indent
  • Outdent
  • (new) Insert HTML Code
  • (new) Insert Horizontal Line
  • Insert Image
  • (new) Insert Inline Image
  • Insert Youtube
  • Insert iframe (new)
  • Insert Video
  • Insert Audio
  • Insert Link
  • Checkbox
  • Text Color
  • (new) Text Color (String)
  • Text Background Color
  • (new) Text Background Color (String)
  • (new) Font Family
  • Text Font Size
  • Unordered List (Bullets)
  • Ordered List (Numbers)
  • (new) Get Selected Text
  • (new) Get Selected Href
  • (new) Table
  • (new) Collapsible Section
  • (new) Run and acquire data direct from JavaScript (requestJSData)

Attribute change of editor

  • Font Size
  • Background Color
  • Width
  • Height
  • Placeholder
  • Load CSS
  • (new) Load Font
  • (new) getFontFamily
  • State Callback

Demo

Demo

How do I use it?

Setup

Gradle
repositories {
   mavenCentral()
   maven { url "https://jitpack.io" }
}

dependencies {
  implementation 'com.github.niendo1:richeditor-android:3.0.2'
}
Maven
<repositories>
  <repository>
  <id>jitpack.io</id>
		    <url>https://jitpack.io</url>
		</repository>
  </repositories>
<dependency>
	    <groupId>com.github.niendo1</groupId>
        <artifactId>richeditor-android</artifactId>
	    <version>3.0.2</version>
</dependency>
leiningen

:repositories [["jitpack" "https://jitpack.io"]]
:dependencies [[com.github.niendo1/richeditor-android "3.0.2"]]

sbt
resolvers += "jitpack" at "https://jitpack.io"
libraryDependencies += "com.github.niendo1" % "richeditor-android" % "3.0.2"

Default Setting for Editor


Height

editor.setEditorHeight(200);

Font

editor.setEditorFontSize(22);
editor.setEditorFontColor(Color.RED);
editor.setTextColor("initial");
editor.setFontFamily("fantasy");

Background

editor.setEditorBackgroundColor(Color.BLUE);
editor.setBackgroundColor(Color.BLUE);
editor.setBackgroundResource(R.drawable.bg);
editor.setBackground("https://raw.githubusercontent.com/wasabeef/art/master/chip.jpg");

Padding

editor.setPadding(10, 10, 10, 10);

Placeholder

editor.setPlaceholder("Insert text here...");

Others
Please refer the samples for usage.

Functions for ContentEditable


Bold

editor.setBold();

Italic

editor.setItalic();

Insert Image

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 Something
     Log.d("RichEditor", "Preview " + text);
  }
});

Others
Please refer the samples for usage.

Requirements

Android 7+ (Level 24)

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
ScorePal
ImapNotes3

Developed By

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

Follow me on Twitter

Peter Korf (niendo) - peter@niendo.de

Thanks

  • Inspired by ZSSRichTextEditor in nnhubbard.

License

Copyright (C) 2022-2024 niendo
Copyright (C) 2020 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.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 54.8%
  • JavaScript 39.7%
  • CSS 3.0%
  • HTML 2.5%