我正在使用此代码html
从 in 中打开活动。TextView
它工作正常。
即点击“打开活动”它打开活动。
但我的问题是如何发送数据或参数?
txtLink = (TextView) findViewById(R.id.txtLink);
txtLink.setText(Html
.fromHtml("<b>text3:</b> Text with a "
+ "<a href=\***"com.example.textviewlink:/linkActivty/\">Open Activity</a>*** "
+ "created in the Java source code using HTML.<a href=\"http://www.google.com\">Google.com</a>"));
txtLink.setMovementMethod(LinkMovementMethod.getInstance());
我如何在上面的代码中发送额外的参数,以便我可以在目标活动中使用它?