All Projects → irshuLx → Android Wysiwyg Editor

irshuLx / Android Wysiwyg Editor

Licence: apache-2.0
📟 A text editor written in Android using native components in the content tree. Integrate easily to work with web based WYSIWYG's.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Wysiwyg Editor

am-editor
A rich text collaborative editor framework that can use React and Vue custom plug-ins. 一个富文本实时协同编辑器框架,可以使用React和Vue自定义插件。
Stars: ✭ 542 (+53.98%)
Mutual labels:  wysiwyg-editor
jce
JCE - A Content Editor for Joomla
Stars: ✭ 29 (-91.76%)
Mutual labels:  wysiwyg-editor
Text
📑 Collaborative document editing using Markdown
Stars: ✭ 282 (-19.89%)
Mutual labels:  wysiwyg-editor
unotes
Unotes Visual Studio Code Extension. A markdown WYSIWYG notes editor.
Stars: ✭ 137 (-61.08%)
Mutual labels:  wysiwyg-editor
textbus
Textbus 是一个组件化的、数据驱动的富文本框架,支持在线协同编辑,同时也可以作为一个开箱即用的富文本编辑器,拥有非常好的扩展性和可定制性,是构建复杂富文本的不二之选!
Stars: ✭ 642 (+82.39%)
Mutual labels:  wysiwyg-editor
rtexteditorview
A simple WYSIWYG editor for Android
Stars: ✭ 51 (-85.51%)
Mutual labels:  wysiwyg-editor
wordpress-froala-wysiwyg
Wordpress plugin for Froala WYSIWYG HTML Editor.
Stars: ✭ 38 (-89.2%)
Mutual labels:  wysiwyg-editor
Angular Froala
Angular.js bindings for Froala WYSIWYG HTML Rich Text Editor.
Stars: ✭ 299 (-15.06%)
Mutual labels:  wysiwyg-editor
bonita-ui-designer
No description or website provided.
Stars: ✭ 32 (-90.91%)
Mutual labels:  wysiwyg-editor
Graphviz Visual Editor
A web application for interactive visual editing of Graphviz graphs described in the DOT language.
Stars: ✭ 261 (-25.85%)
Mutual labels:  wysiwyg-editor
wysiwyg-editor-php-sdk
PHP SDK to ease the integration of Froala WYSIWYG Editor on server side.
Stars: ✭ 37 (-89.49%)
Mutual labels:  wysiwyg-editor
wysiwyg-editor-dotnet-sdk
.NET SDK to ease the integration of Froala WYSIWYG Editor on server side.
Stars: ✭ 23 (-93.47%)
Mutual labels:  wysiwyg-editor
dokuwiki-plugin-prosemirror
Work in Progress
Stars: ✭ 32 (-90.91%)
Mutual labels:  wysiwyg-editor
react-web-editor
The react-web-editor is a WYSIWYG editor library. you can resize and drag your component. It also has simple rich text editor
Stars: ✭ 191 (-45.74%)
Mutual labels:  wysiwyg-editor
Onepager
Onepage Theme/Website Builder for WordPress
Stars: ✭ 286 (-18.75%)
Mutual labels:  wysiwyg-editor
jupyter-wysiwyg
A rich text editor for markdown cells in Jupyter
Stars: ✭ 34 (-90.34%)
Mutual labels:  wysiwyg-editor
typester
✒️ A WYSIWYG that gives you predictable and clean HTML
Stars: ✭ 29 (-91.76%)
Mutual labels:  wysiwyg-editor
Awesome Web Editor
🔨 Open source WEB editor summary
Stars: ✭ 306 (-13.07%)
Mutual labels:  wysiwyg-editor
Trix
A rich text editor for everyday writing
Stars: ✭ 16,546 (+4600.57%)
Mutual labels:  wysiwyg-editor
Smalleditor
Small WYSIWYG editor with delta save, inspired by Medium
Stars: ✭ 257 (-26.99%)
Mutual labels:  wysiwyg-editor

Download  enter image description here License

Android-WYSIWYG-Editor

An iframe free text editor that uses native components in the content tree. Motivation was to create a clean native feel WYSIWYG editor like medium.com has.

Changelog

[3.0.4 - 30 July 2019]

  • Updates glide to 4.9.0

[3.0.3 - 20 December 2018]

  • Introducing Macro's - Macro's are equivalent to components in react/vue.js. It lets you add a custom block into the editor where you get to control what gets rendered into the editor. Read more about this below on Macro's section.

  • Add blockquote support

  • Replaced image loader library Picasso with Glide, so to make use of it's rich customization api.

  • An improved editor navigation.

[2.3.2 - 01 December 2018]

  • Links on editor will now respond to click
  • Fix for editor rendering wrong order from serialised string/html

Please find all the latest releases/changelogs on https://github.com/irshuLx/Android-WYSIWYG-Editor/releases

Contributions

You can clone from the master branch. Once ready to merge , please open a pull request to dev branch. Be sure to merge the latest from "upstream" before making a pull request! I can then review and merge it back to master

Download

gradle:

compile 'com.github.irshulx:laser-native-editor:3.0.3'

or maven:

<dependency>
  <groupId>com.github.irshulx</groupId>
  <artifactId>laser-native-editor</artifactId>
  <version>3.0.3</version>
  <type>pom</type>
</dependency>

Demo

     

   

Features

  • Renderer or Editor: You can use it as a Renderer to Render the content or use it as an Editor to create the content.

  • No Webviews used to render the content. It uses Native EditText, ImageView and as such to render the contents.

  • HTML Parser: Render your HTML Code into the editor and vice versa.

  • Integration with web based WYSIWYG's: HTMLParser helps the Editor to work seemlessly with the WYSIWYG editor on your web platform.

The editor is built, so that every part of the design have been exposed and is available for customization.

Available Controls:

Control Usage
H1, H2 and H3 Insert Headings
Blockquote Insert a blockquote
Bold, Italic,Color, Intent & Outdent Format the text
Image Picker Insert Images to the editor from storage or a URL
Hyperlinks Add Links to the editor
Location Selector Use the embedded map editor to tag and insert locations to the editor
Numbered and Bulleted Lists Let's you created Unorderd and Ordered lists
Line Divider Add a divider

Usage

For a complete overview of the implementation, please take a look at EditorTestActivity.java

Layout XML

<com.github.irshulx.Editor
    android:layout_width="match_parent"
    android:id="@+id/editor"
    app:render_type="Editor"
    app:placeholder="Start writing here..."
    android:paddingTop="10dp"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:layout_height="wrap_content"
    android:paddingBottom="100dp"
/>

Activity

 @Override
 protected void onCreate(Bundle savedInstanceState) {

    editor = (Editor) findViewById(R.id.editor);
    findViewById(R.id.action_h1).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.H1);
        }
    });

    findViewById(R.id.action_h2).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.H2);
        }
    });

    findViewById(R.id.action_h3).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.H3);
        }
    });

    findViewById(R.id.action_bold).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.BOLD);
        }
    });

    findViewById(R.id.action_Italic).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.ITALIC);
        }
    });

    findViewById(R.id.action_indent).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.INDENT);
        }
    });

    findViewById(R.id.action_outdent).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.OUTDENT);
        }
    });

    findViewById(R.id.action_bulleted).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.insertList(false);
        }
    });
    
       findViewById(R.id.action_color).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextColor("#FF3333");
        }
    });

    findViewById(R.id.action_unordered_numbered).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.insertList(true);
        }
    });

    findViewById(R.id.action_hr).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.insertDivider();
        }
    });

    findViewById(R.id.action_insert_image).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.openImagePicker();
        }
    });

    findViewById(R.id.action_insert_link).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.insertLink();
        }
    });


    findViewById(R.id.action_erase).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.clearAllContents();
        }
    });

findViewById(R.id.action_blockquote).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            editor.updateTextStyle(EditorTextStyle.BLOCKQUOTE);
        }
    });
    
    editor.render();
    
}

If you are using Image Pickers, Add the following into your Activity:

     @Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == editor.PICK_IMAGE_REQUEST && resultCode == Activity.RESULT_OK&& data != null && data.getData() != null) {
        Uri uri = data.getData();
        try {
            Bitmap bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), uri);
            editor.insertImage(bitmap);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    else if (resultCode == Activity.RESULT_CANCELED) {
       // editor.RestoreState();
    }
}

You can also programmatically append text into the editor using HTML like so:

editor.render("<p>Hello man, whats up!</p>");
editor.render("<div>This is another paragraph!</div>");

Please be reminded, nested HTML ARE NOT supported at the moment except for <ul> and <ol>, for eg: <p><h2>Hello world</h2></p> won't work since <h2> is nested inside <p>. Following HTML tags are supported:

  • <p>,<div>
  • <h1>,<h2>,<h3>
  • <blockquote>
  • <img>
  • <ul>,<ol>
  • <hr/>
  • <br/>

API

  • render(); Render the editor. This method must be called to render the editor.

  • render(String html); Render the editor with HTML as parameter.

  • render(EditorState state); Render the editor with the state as parameter

  • getContent(); returns the content in the editor as EditorState

  • getContentAsSerialized(); returns the content as serialized form of EditorState

  • getContentAsSerialized(EditorState state); returns the provided parameter as serialized.

  • getContentAsHTML(); returns the editor content in HTML format.

  • updateTextStyle(EditorTextStyle style); Update the text style for the currently active block. Possible values are H1,H2,H3,BOLD,ITALIC,BLOCKQUOTE,INDENT and OUTDENT .

  • setH1TextSize(int size), setH2TextSize(int size) and setH3TextSize(int size); Override the existing text sizes. There are getter methods as well to retrieve the existing text sizes for each.

  • setFontFace(int resource); Sets the FontFace for the editor.

  • setLineSpacing(float value); Sets the linespace for the editor.

  • setEditorTextColor("#FF3333"); Sets the global text color of the editor (default is #000000).

  • updateTextColor("#FF3333"); Changes the text color of the focused text.

  • openImagePicker(); Opens up the image picker. Once the user has selected the image, it's automatically inserted to the editor. But you must configure a remote URL ,where you want the image to be uploaded. If the Remote URL is not specifed, the image is not persisted.

  • insertImage(Bitmap bitmap); Insert a bitmap image into the editor.

  • setEditorImageLayout(int layout); Override the default layout for images in the editor.

  • insertList(boolean isOrdered);Insert an Ordered or Unordered List.

  • setListItemLayout(int layout); Override the default layout for list items.

  • insertMacro(String name,View view, Map<String, Object> props); Insert macro(custom component).

  • insertDivider(); Insert a line divider

  • setDividerLayout(int layout); Override the default layout for dividers

If you are using image uploads, use the below to add the uploaded image to editor:

  editor.setEditorListener(new EditorListener() {
            @Override
            public void onTextChanged(EditText editText, Editable text) {
                // Toast.makeText(EditorTestActivity.this, text, Toast.LENGTH_SHORT).show();
            }
            @Override
            public void onUpload(Bitmap image, String uuid) {
               
               //do your upload image operations here, once done, call onImageUploadComplete and pass the url and uuid as reference.
                editor.onImageUploadComplete("http://www.videogamesblogger.com/wp-content/uploads/2015/08/metal-gear-solid-5-the-phantom-pain-cheats-640x325.jpg",uuid);
               // editor.onImageUploadFailed(uuid);
            }
        });

Macro's

A macro is equivalent to a component in react/vue.js.

for eg: In vue, you define a component author-tag as:

 Vue.component('author-tag', {  
     props: ['author-name', 'date'],
     template: '<div>
                  <span class="name" {{author-name}}></span>
                  <span class="date" {{date}}></span>
               </div>'  
    });

You can then use this component as a custom HTML element in your markup:

<author-tag author-name="Thomas Isaac" date="12 July 2018">
</author-tag>

When a custom html tag is found on the HTML text that's fed to the editor, View onRenderMacro(String name, Map<String, Object> props, int index); will be invoked. All you need to do is to inflate your custom view created to handle author-tag and return that view to the editor:

editor.setEditorListener(new EditorListener() {
    ...
    @Override  
    public View onRenderMacro(String name, Map<String, Object> props, int index) {  
        View layout = getLayoutInflater().inflate(R.layout.layout_authored_by, null);  
        TextView lblName = layout.findViewById(R.id.lbl_author_name);
        lblName.setText(props.get("author-name"));
	return layout;  
     }
});

To insert a macro, use:

private void insertAuthorMacro() {  
  View layout = getLayoutInflater().inflate(R.layout.layout_authored_by, null);  
  Map<String, Object> props = new HashMap<>();  
  props.put("author-name", "Thomas Isaac");  
  props.put("date","12 July 2018");  
  editor.insertMacro("author-tag",layout, props);  
}

When content is extracted using editor.getContentAsHTML(); the html string will contain:

"<author-tag author-name=\"Thomas Isaac\" date=\"12 July 2018\"></author-tag>"

Custom Fonts

You can set your own fonts for the editor.

    Map<Integer, String> headingTypeface = getHeadingTypeface();
    Map<Integer, String> contentTypeface = getContentface();
    editor.setHeadingTypeface(headingTypeface);
    editor.setContentTypeface(contentTypeface);

     public Map<Integer,String> getHeadingTypeface() {
    Map<Integer, String> typefaceMap = new HashMap<>();
    typefaceMap.put(Typeface.NORMAL,"fonts/GreycliffCF-Bold.ttf");
    typefaceMap.put(Typeface.BOLD,"fonts/GreycliffCF-Heavy.ttf");
    typefaceMap.put(Typeface.ITALIC,"fonts/GreycliffCF-Heavy.ttf");
    typefaceMap.put(Typeface.BOLD_ITALIC,"fonts/GreycliffCF-Bold.ttf");
    return typefaceMap;
}

public Map<Integer,String> getContentface() {
    Map<Integer, String> typefaceMap = new HashMap<>();
    typefaceMap.put(Typeface.NORMAL,"fonts/Lato-Medium.ttf");
    typefaceMap.put(Typeface.BOLD,"fonts/Lato-Bold.ttf");
    typefaceMap.put(Typeface.ITALIC,"fonts/Lato-MediumItalic.ttf");
    typefaceMap.put(Typeface.BOLD_ITALIC,"fonts/Lato-BoldItalic.ttf");
    return typefaceMap;
}

Overridable layouts

You can create your own layouts with the same Id's with the required Id's and put them in your app's layout directory. App will then override the library's layout and pick the one from your app's layout directory. As of now, you can override the following layouts.

Layout Description Required Id's
R.layout.tmpl_image_view To insert an image to the editor @+id/progress, @+id/lblStatus,@+id/imageView,@+id/btn_remove
R.layout.tmpl_list_item To insert an ordered/unordered list @+id/lblOrder, @+id/txtText,@+id/lblText
R.layout.tmpl_divider_layout To insert a line divider -

You could also set the layouts via the API:

  • editor.setEditorImageLayout(R.layout.tmpl_image_view);

  • editor.setListItemLayout(R.layout.tmpl_list_item);

  • editor.setDividerLayout(R.layout.tmpl_divider_layout);

If you have minifyEnabled, below are the proguard rules:

  -keep class com.google.gson.** { *; }  
  -dontwarn com.squareup.picasso.**  
  -dontwarn com.squareup.okhttp.**  
  -keep public class org.jsoup.** { public *; }

Best Practices

Since the endusers are hard typing the content, it's always considered good idea to backup the content every specific interval to be safe.

timer = new Timer();  
timer.scheduleAtFixedRate(new TimerTask() {  
  @Override  
  public void run() {  
     String text = editor.getContentAsSerialized();
     sharedPreferences.putString(String.format("backup-{0}",  new SimpleDateFormat("dd-MM-yyyy hh:mm:ss").format(new Date())),   text);
     sharedPreferences.apply();
  }
}, 0, backupInterval);

Future Plans

  • Add videos support

  • Address the issues and feature requests from fellow devs.

Contributions are much appreciated, feel free to fork and customize for your needs.

If you come across any bugs or needs, please mention it on issues, i will address it and resolve it the latest possible.

Libraries Used

  • Glide, Gson, Jsoup

License

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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].