gpt4 book ai didi

android - TextView HTML 链接 Activity

转载 作者:行者123 更新时间:2023-11-30 04:04:54 24 4
gpt4 key购买 nike

我正在使用此代码在 TextViewhtml 中打开 Activity 。它工作正常。

即点击“打开 Activity ”,它会打开 Activity 。

但我的问题是我怎样才能用这个发送数据或参数??

   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());

我怎样才能在上面的代码中发送额外的参数,以便我可以在目标 Activity 中使用它?

最佳答案

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";

在调用的 Activity 中使用 Intent。

 String author = getIntent().getData().getQueryParameter("author");  
String nick = getIntent().getData().getQueryParameter("nick");

看这个link .

关于android - TextView HTML 链接 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11845454/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com