如何更改文本视图中单个单词的文本大小和颜色

时间:2014-08-29 02:56:02

标签: android textview

我正在设计一个应用程序,我可以改变单个单词的大小和颜色。我附上图片如下。这是我的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>

我想在这里展示&#34; Free&#34;与大文本大小和不同的颜色的词。有什么建议吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

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