我正在使用此代码在html
中的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());
如何在上面的代码中发送额外的参数,以便我可以在目标活动中使用它?
答案 0 :(得分:3)
String text = "Visit my blog <a href=\"http://sherifandroid.blogspot.com/\">mysite</a> or run the <a href=\"sherif-activity://myactivity?author=sherif&nick=king\">myactivity</a> callback";
在被叫活动中使用Intent。
String author = getIntent().getData().getQueryParameter("author");
String nick = getIntent().getData().getQueryParameter("nick");
看看这个link。
答案 1 :(得分:-2)
例如:
布局
<TextView
android:id="@+id/link_web"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:autoLink="web"
android:text="@string/link_web"/>
活动
TextView.setText(Html.fromHtml("http://www.google.com"));