Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wasabeef/richeditor-android
RichEditor for Android is a beautiful Rich Text WYSIWYG Editor for Android.
https://github.com/wasabeef/richeditor-android
android android-library wysiwyg-editor
Last synced: 1 day ago
JSON representation
RichEditor for Android is a beautiful Rich Text WYSIWYG Editor for Android.
- Host: GitHub
- URL: https://github.com/wasabeef/richeditor-android
- Owner: wasabeef
- License: apache-2.0
- Created: 2015-03-30T16:19:20.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T09:52:28.000Z (8 months ago)
- Last Synced: 2024-10-29T15:28:33.226Z (2 months ago)
- Topics: android, android-library, wysiwyg-editor
- Language: Java
- Homepage:
- Size: 2.76 MB
- Stars: 6,243
- Watchers: 189
- Forks: 1,201
- Open Issues: 220
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-android-ui - https://github.com/wasabeef/richeditor-android
- awesome-android-ui - https://github.com/wasabeef/richeditor-android
README
`RichEditor for Android` is a beautiful Rich Text `WYSIWYG Editor` for `Android`.
- _Looking for iOS? Check out_ [cjwirth/RichEditorView](https://github.com/cjwirth/RichEditorView)
Supported Functions
---![Toolbar](./art/demo.gif)
- [x] Bold
- [x] Italic
- [x] Subscript
- [x] Superscript
- [x] Strikethrough
- [x] Underline
- [x] Justify Left
- [x] Justify Center
- [x] Justify Right
- [x] Blockquote
- [x] Heading 1
- [x] Heading 2
- [x] Heading 3
- [x] Heading 4
- [x] Heading 5
- [x] Heading 6
- [x] Undo
- [x] Redo
- [x] Indent
- [x] Outdent
- [x] Insert Image
- [x] Insert Youtube
- [x] Insert Video
- [x] Insert Audio
- [x] Insert Link
- [x] Checkbox
- [x] Text Color
- [x] Text Background Color
- [x] Text Font Size
- [x] Unordered List (Bullets)
- [x] Ordered List (Numbers)Attribute change of editor
---
- [x] Font Size
- [x] Background Color
- [x] Width
- [x] Height
- [x] Placeholder
- [x] Load CSS
- [x] State Callback**Milestone**
- [ ] Font Family
Demo
---![Demo](./art/demo2.gif)
How do I use it?
---### Setup
##### Gradle
```groovy
repositories {
mavenCentral()
}dependencies {
implementation 'jp.wasabeef:richeditor-android:2.0.0'
}
```
### Default Setting for Editor
---**Height**
```java
editor.setEditorHeight(200);
```**Font**
```java
editor.setEditorFontSize(22);
editor.setEditorFontColor(Color.RED);
```**Background**
```java
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**
```java
editor.setPadding(10, 10, 10, 10);
```**Placeholder**
```java
editor.setPlaceholder("Insert text here...");
```**Others**
Please refer the [samples](https://github.com/wasabeef/richeditor-android/blob/master/sample/src/main/java/jp/wasabeef/sample/MainActivity.java) for usage.### Functions for ContentEditable
---**Bold**
```java
editor.setBold();
```**Italic**
```java
editor.setItalic();
```**Insert Image**
```java
editor.insertImage("https://raw.githubusercontent.com/wasabeef/art/master/twitter.png","twitter");
```**Text Change Listener**
```java
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](https://github.com/wasabeef/richeditor-android/blob/master/sample/src/main/java/jp/wasabeef/sample/MainActivity.java) for usage.Requirements
--------------
Android 4+Applications using RichEditor for Android
---Please [ping](mailto:[email protected]) me or send a pull request if you would like to be added here.
Icon | Application
------------ | -------------
| [Ameba Ownd](https://play.google.com/store/apps/details?id=jp.co.cyberagent.madrid)
| [ScorePal](https://play.google.com/store/apps/details?id=com.hfd.scorepal)Developed By
-------
Daichi Furiya (Wasabeef) -Thanks
-------* Inspired by `ZSSRichTextEditor` in [nnhubbard](https://github.com/nnhubbard/ZSSRichTextEditor).
License
-------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 athttp://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.