my string.xml string line
<string name="companyLink"><a href="http://www.abc.com">abc Technology </a> </string>
and this is how i try to use the html
TextView companylink = (TextView) findViewById(R.id.textViewCompanyLink);
companylink.setText(Html.fromHtml(getString(R.string.companyLink)));
companylink.setMovementMethod(LinkMovementMethod.getInstance());
however android only display out the html without the hyperlink on the screen
<a href=http://abc.com>abc string </a>