GithubHelp home page GithubHelp logo

niendo1 / richeditor-android Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wasabeef/richeditor-android

8.0 1.0 2.0 3.25 MB

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

License: Apache License 2.0

JavaScript 40.00% Java 55.28% CSS 3.01% HTML 1.72%

richeditor-android's Introduction

Logo

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) - [email protected]

Follow me on Twitter

Peter Korf (niendo) - [email protected]

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.

richeditor-android's People

Contributors

alexcrist avatar bitdeli-chef avatar bmadaras avatar chrissd23 avatar cjwirth avatar jbcorreia avatar kashish-sharma avatar leandrolerena avatar michar avatar monkeydone avatar niendo1 avatar richfuns avatar victory-over avatar vmarch avatar wasabeef avatar yulocus avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

richeditor-android's Issues

Inserting a Base64 image

Thank you for sharing these updates.

  • Regarding Image Insert -
    What I am trying to do is use your version of richeditor in an email app.

From a server I am receiving an image in Base64 via a json return, and then want to insert that directly into the richeditor. However looking at the code it seems it needs to pull the image from a link ? Is that correct ?
Can it insert the image as I receive it as mentioned ?

More specifically, I want that inline image to be seen in Outlook (Hotmail) and GMail.

I have been able to dummy up data into richedit to show an image in Hotmail however it does not appear in GMail. It seems the image insert does not present an image in a format that can be recognised across the board ?

So my question is, which I am hoping you can guide me on, is ;

a) using your version of richeditor, how do I insert a image (data:image/png;base64) directly into the editor area.

b) do you happen to know how then that data needs to be formatted to appear in GMail as well as Hotmail as well as being generally displayed ?

I have used "data:image/png;base64,iVBORw0KG .......
which as I say works fine in Hotmail but does not work for GMail

Cheers
Mark

Effects are not applying when keyboard is hide

Scenario for reproducing:

Run sample app
Focus on editor, type any content
Now, I have Open Color picker dialog. That i am hide the keyboard and choose the color.
This color is not set when i am writing into editor

Cannot Import to Project

Hello,

Thanks for taking the time to make this editor better. I am been using Richtext-Editor on a note app for some time. I wanted to see if I can add the improvements you made but I cannot import to my project.

I went to jitpack and put your repo name and this is what I got.

No read access to repo

For now, I will just manually import but if this can be resolved, much appreciated.

Error while Dexing Null Pointer

Unfortunately I ma getting the following in a project that uses ;

AGP 7.2.2
Gradle 7.4.2 (tried 7.5.1 also)

AGPBI: {"kind":"error","text":"java.lang.NullPointerException","sources":[{"file":"C:\tmp\caches\transforms-3\d3255e2016cf8ee818b864bb1d4dc17e\transformed\jetified-richeditor-android-3.0.0-runtime.jar"}],"tool":"D8"}

java.lang.NullPointerException

Suggestions would be appreciated.

Thanks

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.