Refactoring

This commit is contained in:
M66B
2021-08-01 16:37:38 +02:00
parent ec35b51ef5
commit 134fbaf2f0
4 changed files with 6 additions and 7 deletions

View File

@@ -57,7 +57,7 @@ public class ActivityAnswer extends ActivityBase {
public void onItemClick(AdapterView<?> adapterView, View view, int pos, long id) {
EntityAnswer answer = (EntityAnswer) adapterView.getAdapter().getItem(pos);
String html = answer.getText(null);
String html = answer.getHtml(null);
String text = HtmlHelper.getText(ActivityAnswer.this, html);
ClipboardManager cbm = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);