From 93326a90d1454756dd8be5c1b4aeec9868599cca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Sat, 6 Jul 2013 18:28:25 +0200 Subject: [PATCH] Descriptions and Summaries are now selectable (closes #290) --- src/org/fdroid/fdroid/AppDetails.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/org/fdroid/fdroid/AppDetails.java b/src/org/fdroid/fdroid/AppDetails.java index c9544b003..9459173c7 100644 --- a/src/org/fdroid/fdroid/AppDetails.java +++ b/src/org/fdroid/fdroid/AppDetails.java @@ -390,6 +390,7 @@ public class AppDetails extends ListActivity { tv = (TextView) infoView.findViewById(R.id.description); tv.setMovementMethod(LinkMovementMethod.getInstance()); + tv.setTextIsSelectable(true); // Need this to add the unimplemented support for ordered and unordered // lists to Html.fromHtml(). class HtmlTagHandler implements TagHandler { @@ -422,6 +423,7 @@ public class AppDetails extends ListActivity { tv = (TextView) infoView.findViewById(R.id.summary); tv.setText(app.summary); + tv.setTextIsSelectable(true); tv = (TextView) infoView.findViewById(R.id.appid); if (pref_expert) {