我一直在使用WYSIWYG-Editor,以便在我的android应用中呈现一些HTML内容。链接:https://github.com/irshuLx/Android-WYSIWYG-Editor
我仅将其用于渲染功能,并且想从用户禁用编辑功能。
我试图寻找将禁用编辑功能的功能,并且还试图禁用单击视图的功能,但是似乎没有任何作用。
我的目标是在用户无法编辑的情况下获取呈现的HTML。
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_income_details);
initViews();
editor.render("<p>Hello man, whats up!</p>");
editor.render("<div>This is another paragraph!</div>");
editor.getContentAsSerialized(editor.getContent());
editor.setClickable(false);
editor.setEnabled(false);
editor.render();
}
这是我尝试禁用无效的点击功能的方法。 我在库中找不到任何禁用的功能,不允许用户对其进行编辑。
应该是这样的:https://raw.githubusercontent.com/irshuLx/Android-WYSIWYG-Editor/master/screens/screenshot3.png