我正在尝试设置链接 url 和链接以开始花药活动。这是我的代码,它与 html 链接一起工作,但不知道如何做链接来启动另一个活动。
我的代码示例:
final AlertDialog d = new AlertDialog.Builder(this)
.setPositiveButton(android.R.string.ok, null)
.setMessage(Html.fromHtml(getResources().getString(R.string.infoAuthor)+" <br> <a href=\"https://www.youtube.com">click here for help</a>"))
.create();
d.show();
// Make the textview clickable. Must be called after show()
((TextView)d.findViewById(android.R.id.message)).setMovementMethod(LinkMovementMethod.getInstance());
如果你能给出一些代码怎么做。