在我的Android应用程序中,有一个页面,我必须显示文本 - “条款和条件” 点击此文本后,我们需要在浏览器中打开一个网址 请告诉我如何实现这个目标
答案 0 :(得分:1)
可能对你有所帮助。
TextView text = (TextView) findViewById(R.id.textView1);
text.settext("Your text with url");
text.setLinkTextColor(Color.BLUE); // color whatever u want
Linkify.addLinks(text, Linkify.ALL);
答案 1 :(得分:0)
为setonItemclickListener
简单使用textview
。在click事件中,为下一个包含webView
的活动创建一个intent,或者使用默认的Action_VIEW
打开默认浏览器。
答案 2 :(得分:0)
TextView text = (TextView) findViewById(R.id.textView1);
text.settext("Your text with url means your text value");// text having url
text.setLinkTextColor(Color.BLUE); // color whatever u want
Linkify.addLinks(text, Linkify.ALL);
您好ankit将在文本视图中设置您的文本,它会自动识别您文本的网址部分并创建指向该网址的链接。如果您还有任何查询,请随时询问:)