Android 自定义Button控件实现按钮点击变色_安卓软件开发教程-查字典教程网
Android 自定义Button控件实现按钮点击变色
Android 自定义Button控件实现按钮点击变色
发布时间:2016-12-28 来源:查字典编辑
摘要:效果图如下所示:一、shape样式:(在drawable新建--》new--》Drawableresourcefile在父级标签select...

效果图如下所示:

一、shape 样式:(在drawable新建--》new--》Drawable resource file 在父级标签selector添加Item )

<"1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_pressed="true"> <shape android:shape="rectangle"> <solid android:color="#73c4f3" /> <stroke android:width="2dp" android:color="#ffffff" /> <corners android:radius="20dp" /> <padding android:bottom="5dp" android:left="10dp" android:right="10dp" android:top="5dp" /> <gradient android:angle="270" android:endColor="#8accf2" android:startColor="#8accf2" android:type="sweep" /> </shape> <shape> <solid android:color="#3fb3f6" /> <stroke android:width="2dp" android:color="#ffffff" /> <corners android:radius="20dp" /> <padding android:bottom="5dp" android:left="10dp" android:right="10dp" android:top="5dp" /> </shape> </item> </selector>

二、style 样式:

<style name="rectangle"> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">wrap_content</item> <item name="android:textSize">15sp</item> <item name="android:textColor">#ffffff</item> <item name="android:background">@drawable/buttonclickstyle</item> </style>

三、Button控件调用style样式:

<"1.0" encoding="utf-8"?> <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="com.example.ly.blogtest.MainActivity"> <Button android:id="@+id/button" android:text="@string/btn1" /> </RelativeLayout>

----------------------------------按钮点击变色-----------------------------------------------------

----------------------------------item属性标记------------------------------

android:state_pressed 是否按下,如一个按钮触摸或者点击。

android:state_focused 是否取得焦点,比如用户选择了一个文本框。

android:state_hovered 光标是否悬停,通常与focused state相同,它是4.0的新特性

android:state_selected 被选中,它与focus state并不完全一样,如一个list view 被选中的时候,它里面的各个子组件可能通过方向键,被选中了。

android:state_checkable 组件是否能被check。如:RadioButton是可以被check的。

android:state_checked 被checked了,如:一个RadioButton可以被check了。

android:state_enabled 能够接受触摸或者点击事件

android:state_activated 被激活

android:state_window_focused

应用程序是否在前台,当有通知栏被拉下来或者一个对话框弹出的时候应用程序就不在前台了

注意:如果有多个item,那么程序将自动从上到下进行匹配,最先匹配的将得到应用。(不是通过最佳匹配)

如果一个item没有任何的状态说明,那么它将可以被任何一个状态匹配。

----------------------------------item属性标记------------------------------

以上所述是小编给大家介绍的Android 自定义Button控件实现按钮点击变色,希望对大家有所帮助,如果大家有任何疑问请给我们留言,小编会及时回复大家的。在此也非常感谢大家对查字典教程网的支持!

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新安卓软件开发学习
    热门安卓软件开发学习
    编程开发子分类