概述
怎么在textView中实现类似这样的文本??要求可以点击跳转。
代码如下:
xml中:
android:id="@+id/tv_one"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.37" />
android:id="@+id/tv_two"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="all"
android:text="TextView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
在java文件中:
TextView tv_one=findViewById(R.id.tv_one);//设置两个框体可视化
TextView tv_two=findViewById(R.id.tv_two);
String text1="hahhaha";//设置文本的格式
text1+="百度
";//对text1添加一个“百度”的超链接
tv_one.setText(Html.fromHtml(text1));//将text1利用Html.fromHtml()的方法将其转换
tv_one.setMovementMethod(LinkMovementMethod.getInstance());//为text1添加点击动作
String text2="我的网站:http://www.baidu.com " ;
text2+="我的电话:13213213213";
tv_two.setMovementMethod(LinkMovementMethod.getInstance());
tv_two.setText(text2);
本文地址:https://blog.csdn.net/weixin_44980441/article/details/110530506
如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!
最后
以上就是等待母鸡为你收集整理的android如何展示富文本_Android中如何在textView实现富文本的全部内容,希望文章能够帮你解决android如何展示富文本_Android中如何在textView实现富文本所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复