TextView Html链接活动

时间:2012-08-07 11:57:45

标签: android

我正在使用此代码在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());

如何在上面的代码中发送额外的参数,以便我可以在目标活动中使用它?

2 个答案:

答案 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"));