Use string substitution to avoid translating trademarked text

This commit is contained in:
Michiyo Wellington-Oguri 2017-07-16 14:28:23 -07:00
parent 44d294efaf
commit 10637f4bf2
3 changed files with 11 additions and 1 deletions

View file

@ -19,4 +19,8 @@ public class HtmlTextView extends AppCompatTextView {
setMovementMethod(LinkMovementMethod.getInstance());
setText(Utils.fromHtml(getText().toString()));
}
public void setHtmlText(String newText){
setText(Utils.fromHtml(newText));
}
}