Android 定义 Color 和 Drawable 的方法
2010-03-15 15:42:00 来源:WEB开发网核心提示:在android中textview中如果希望设置背景颜色或者字体颜色,如下:Xml代码《TextView android:text="@+id/str_1"android:id="@+id/myTextView03"android:autoLink="all"
在android中textview中如果希望设置背景颜色或者字体颜色,如下:
Xml代码
《TextView android:text="@+id/str_1"
android:id="@+id/myTextView03"
android:autoLink="all"
android:textColor="@color/red"
android:background="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"》
《/TextView》
《TextView android:text="@+id/str_1"
android:id="@+id/myTextView03"
android:autoLink="all"
android:textColor="@color/red"
android:background="@color/white"
android:layout_width="wrap_content"
android:layout_height="wrap_content"》
《/TextView》
这里@color/red是需要自己定义的,是/res/values/strings.xml文件中配置
Xml代码
《color name="red"》#BF0000《/color》
《color name="white"》#FFFFFF《/color》
《color name="red"》#BF0000《/color》
《color name="white"》#FFFFFF《/color》
这里的颜色是需要RGB颜色,drawable设置也一样,只需要设置drawable节点即可
[]
更多精彩
赞助商链接