RichEditor for Android
- 授权协议: Apache
- 开发语言: Java
- 操作系统: Android
- 软件首页: https://github.com/wasabeef/richeditor-android
- 软件文档: https://github.com/wasabeef/richeditor-android
软件介绍
RichEditor for Android 是 Android 平台下一个所见即所得的文本编辑器控件。
可以从 Google Play 下载演示程序。
使用示例:
RichEditor editor = (RichEditor) findViewById(R.id.editor);
editor. setOnTextChangeListener(new RichEditor.OnTextChangeListener() {
@Override
public void onTextChange(String text) {
// Do omething
Log.d("RichEditor", "Preview " + text);
}
});
