我知道这是该死的简单问题..但我通过很多方式通过许多教程..你只是告诉我将文本视图中的文本动态链接到网站的最简单方法..意思是我不想包含链接文本的名称将显示在web中的hw标记.hope ua ;;得到我的概率。
<TextView
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true"
android:text="PoliticiansNpolitics.in"
android:textColor="#4169E1"
android:textAppearance="?android:attr/textAppearanceLarge" />
我希望在单击
后重定向到google.com答案 0 :(得分:1)
您可以将点击监听器提供给文本视图,如下所示
tv.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent browserIntent = new Intent(Intent.ACTION_VIEW,
Uri.parse("http://www.google.com"));
startActivity(browserIntent);
}
});
其中tv
是您的textview的ID