Control onclicklistener in autolink enabled textview

前端 未结 9 2650
一向
一向 2020-12-08 19:13

I am using a TextView for which I have set autolink=\"web\" property in XML file. I have also implemented the onClickListener for this TextView. Th

9条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-08 19:48

    Just adding

    textView.setMovementMethod(CustomLinkMovementMethod.getInstance());

    to @binary's answer for those whose the method did not work with them

提交回复
热议问题