我有链接https://google.com。我希望该链接只需更改为字符串“google”
TextView 中显示的是“google”
但实际上在谷歌有链接https://google.com。并且可以点击
我有 XML:
<TextView
android:id="@+id/social"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="30dp"
android:layout_marginTop="350dp"
android:autoLink="web"
android:linksClickable="true"
android:text="in here social"/>
我有Java课程:
TextView social = (TextView) findViewById(R.id.social);
String text = "<a href='https://google.com'> Google </a>";
social.setText(Html.fromHtml(text));
白衣非少年
动漫人物
大话西游666
相关分类