大家好,又见面了,我是你们的朋友全栈君。
TextView设置内容下划线加粗等html样式实例及注意事项
效果图
test01.png
Java代码
package com.myapplication;
import android.app.Activity;
import android.os.Build;
import android.os.Bundle;
import android.text.Html;
import android.text.Spanned;
import android.widget.TextView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tv1 = (TextView)findViewById(R.id.tv1);
TextView tv2 = (TextView)findViewById(R.id.tv2);
String st = “TextView内的文本:下划线 斜体字 设置字体颜色为红色加粗 “;
Spanned result ;
if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.N){//androidN+之后废除了Html.fromHtml(String),用Html.fromHtml(String,flag)代替
result= Html.fromHtml(st,Html.FROM_HTML_MODE_LEGACY);
}else {
result =Html.fromHtml(st);
}
//必须直接写result
tv1.setText(result);
//如果拼接其他内容则无效,比如:
tv2.setText(“添加其他内容无效”+result);
}
}
activity_main.xml
xmlns:android=”http://schemas.android.com/apk/res/android”
android:layout_width=”match_parent”
android:layout_height=”match_parent”
android:paddingLeft=”@dimen/activity_horizontal_margin”
android:paddingRight=”@dimen/activity_horizontal_margin”
android:paddingTop=”@dimen/activity_vertical_margin”
android:gravity=”left”
android:paddingBottom=”@dimen/activity_vertical_margin”
android:orientation=”vertical”
>
android:textSize=”20sp”
android:id=”@+id/tv1″
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:text=”” />
android:layout_marginTop=”20dp”
android:textSize=”20sp”
android:id=”@+id/tv2″
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android:text=”” />
重要的事情说三遍
不要再settext中添加其他内容,直接放入Html.fromHtml()方法得到的返回值,不然无效样式无效
不要再settext中添加其他内容,直接放入Html.fromHtml()方法得到的返回值,不然无效样式无效
不要再settext中添加其他内容,直接放入Html.fromHtml()方法得到的返回值,不然无效样式无效
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/143089.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...