]> gitweb.fperrin.net Git - Dictionary.git/blobdiff - src/com/hughes/android/dictionary/DictionaryActivity.java
Simplify NonLinkClickableSpan.
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryActivity.java
index 863e20b81bffcaaefa20935baef6ac467af99715..34e37d6322a62181632b1bb372b3d4f9831b3a04 100644 (file)
@@ -1772,7 +1772,7 @@ public class DictionaryActivity extends ActionBarActivity {
         textView.setMovementMethod(LinkMovementMethod.getInstance());
         final Matcher matcher = CHAR_DASH.matcher(text);
         while (matcher.find()) {
-            spannable.setSpan(new NonLinkClickableSpan(textColorFg), matcher.start(),
+            spannable.setSpan(new NonLinkClickableSpan(), matcher.start(),
                               matcher.end(),
                               Spannable.SPAN_INCLUSIVE_EXCLUSIVE);
         }