我有一个LinearLayout / Scrollview / LinearLayout,我需要两个链接。
首先是常规TextView - 工作正常。 第二个TextView在RelativeLayout中,其中有一个ImageView,它不起作用。 (的LinearLayout /滚动型/的LinearLayout / RelativeLayout的 ImageView TextView * )
TextView first = (TextView) v.findViewById(R.id.first_tv);
TextView second = (TextView) v.findViewById(R.id.second_tv);
first.setText(Html.fromHtml(getString(R.string.url_first)));
Linkify.addLinks(first, Linkify.ALL);
second.setText(Html.fromHtml(getString(R.string.url_second)));
Linkify.addLinks(second, Linkify.ALL);
第一次textview点击工作。 为什么第二个textview看起来像是一个链接,但它不是在点击时打开浏览器?
答案 0 :(得分:0)
添加
second.setMovementMethod(LinkMovementMethod.getInstance());