Android-Rich-text-Editor icon indicating copy to clipboard operation
Android-Rich-text-Editor copied to clipboard

Android Rich Text Editor With customized spans - 富文本编辑器 - Don't miss this one :)

Results 92 Android-Rich-text-Editor issues
Sort by recently updated
recently updated
newest added

I think AREditText + Default Toolbar are very flexibility. However, Default Toolbar now have less feature than full AREditor. I really want to you add more features. I know you...

After I insert a link to AREditor, I cannot focus to editor when I click to start or end character of the link. It always open browser.

After I save content of AREditor to string, I use fromHtml() to set text. However, that seem redundancy a enter character. Cursor always start in a new line

请问该如何实现undo/redo呢?找不到思路就差这一步了。。

enhancement

When builiding the app using proguard ofuscation the editor crashes: Fatal Exception: java.lang.ClassCastException java.lang.Class cannot be cast to java.lang.reflect.ParameterizedType Adding this rule to proguard helps: -keep class com.chinalwb.are.** { *;...

issues: * 添加\标签,大概率数字会消失 * align right 再点击其他标签,会出现非期望问题 TBC

Add possibility to insert check-boxes, like a to-do list. Thanks!

java.lang.RuntimeException: Unable to start activity ComponentInfo{} Error inflating class com.chinalwb.are.AREditor

integration

想要兼容BASE64需要改动这两个文件,Html.class,以及AreImageGetter.class。 在AreImageGetter.class文件找到getDrawable(),加入判断: else if (source.startsWith("data:image")){ // data:image/jpg;base64 AreUrlDrawable areUrlDrawable = new AreUrlDrawable(mContext); BitmapTarget bitmapTarget = new BitmapTarget(areUrlDrawable, mTextView); try { //ImageUtil.INSTANCE.str2Bitmap(source); //此方法为转bitmap方法,source为base64字符串 Bitmap s = ImageUtil.INSTANCE.str2Bitmap(source); sGlideRequests.asBitmap().load(s).into(bitmapTarget); return areUrlDrawable; }...