Android样式和主题之选择器的实例讲解
程序员文章站
2023-02-15 20:19:19
android学习笔记之样式和主题之选择器
(1)布局文件
android学习笔记之样式和主题之选择器
(1)布局文件
<relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingbottom="@dimen/activity_vertical_margin" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingright="@dimen/activity_horizontal_margin" android:paddingtop="@dimen/activity_vertical_margin" tools:context=".mainactivity" > <button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentbottom="true" android:layout_alignparentleft="true" android:layout_marginbottom="189dp" android:layout_marginleft="55dp" android:textcolor="@color/button_selector" android:text="测试颜色列表状态" /> </relativelayout>
需要在按钮里边使用:android:textcolor="@color/button_selector"
(2)需要在res目录下创建一个color文件夹
button-selector文件内容如下:
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true" android:color="#ffff0000"/> <item android:state_focused="true" android:color="#ff0000ff"/> <item android:color="#ff000000"/> </selector>
其他文件不做修改,默认的就可以
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
推荐阅读
-
Android样式和主题之选择器的实例讲解
-
Android开发之OpenGL、OpenGL ES的概念和实例讲解
-
Android入门之LinearLayout、AbsoluteLayout的用法实例讲解
-
Android开发之ExoPlayer的学习和使用(音频)讲解
-
黑马Android76期学习笔记01基础--day07--广播,有、无序广播、特殊广播接受者、样式和主题,this与context的区别、普通对话框,进度条对话框、帧动画
-
JS基础之语法的作用和使用实例讲解
-
JS基础之DOM的作用和使用实例讲解
-
JS基础之BOM的作用和使用实例讲解
-
Android样式和主题之选择器的实例讲解
-
css基础之元素样式,基本选择器和选择器的权重