This question already has answers here:
Is it possible to have multiple styles inside a TextView?
                                
                                    (18个回答)
                                
                        
                                5年前关闭。
            
                    
我正在设计一个可以更改单个单词的大小和颜色的应用程序。我附加了如下图像,这是我的xml代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listview_with_ad"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#00FFFF"
android:textSize="24"
android:text="Download these two Application and get the Environmental Lighting feature for FREE" />

</RelativeLayout>


在这里,我要显示大字体大小和不同颜色的“免费”字词。有什么建议吗?

最佳答案

您可以尝试SpannableString,它是一个功能强大的工具,可用于在TextView中设置多种样式。请参见this

关于android - 如何在文本 View 中更改文本大小和单个单词的颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25561027/

10-10 04:11