Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有一些单词的文本,如果我们单击并移动到其他活动。我试图从互联网或堆栈溢出中搜索很多。有什么技术可以解决这个问题吗?
谢谢和最好的问候
如果它是关于一段较大文本中的特定单词,请将可点击的单词标记为URLSpan并覆盖URLSpan'onClick(View widget)方法以启动新的Activity- 默认情况下它将在Intent.ACTION_VIEW. 如果您在 SO 上进行搜索,我相信您将能够找到多个示例。
URLSpan
onClick(View widget)
Activity
Intent.ACTION_VIEW
如果您还想删除 固有的下划线,URLSpan请查看此答案。
只需在 TextView 上设置 OnClickListener
textView.setOnClickListener(new OnClikListener(){ public void onClick(View v){ //here call your activity } });