How to make links in a TextView clickable?

后端 未结 30 3873

I have the following TextView defined:



        
30条回答
  •  深忆病人
    2020-11-21 23:39

    Autolink phone does not worked for me. The following worked like a charm,

    TextView tv = (TextView) findViewById(R.id.emergencynos);
    String html2="

    Fire - 997

    "; tv.append(Html.fromHtml(html2)); tv.setMovementMethod(LinkMovementMethod.getInstance());

提交回复
热议问题