私のstring.xml文字列行
<string name="companyLink"><a href="http://www.abc.com">abc Technology </a> </string>
これが私がhtmlを使おうとする方法です
TextView companylink = (TextView) findViewById(R.id.textViewCompanyLink);
companylink.setText(Html.fromHtml(getString(R.string.companyLink)));
companylink.setMovementMethod(LinkMovementMethod.getInstance());
ただし、Androidは画面にハイパーリンクなしでHTMLのみを表示します
<a href=http://abc.com>abc string </a>