android textView 能否通过 htmlfromhtml 设置textView 背景色
不,Android 的 TextView 的背景色不能通过 html.fromhtml 方法来设置。html.fromhtml 方法只能用于解析 HTML 标签,将其转换为 Spannable 对象并显示在 TextView 中。要设置 TextView 的背景色,可以使用 setBackgroundColor 方法来实现。例如:
TextView textView = findViewById(R.id.textView);
textView.setBackgroundColor(Color.RED);
原文地址: http://www.cveoy.top/t/topic/iIlA 著作权归作者所有。请勿转载和采集!