本文实例讲述了android开发圆角button按钮实现过程,分享给大家供大家参考,具体内容如下
需求及效果图:
实现思路:
1、shape实现圆角
在drawable新建两个xml 文件, 这两个 xml文件用shape 实现了圆角效果。
note:
因为要让用户有按下去的效果体验, 所有要有两套圆角图, 在按下去时候切换
1
2
3
4
5
6
7
8
9
10
|
<!-- res/drawable/button_shape_normal.xml --> <shape xmlns:android= "http://schemas.android.com/apk/res/android" android:shape= "rectangle" > <!-- rounded corner --> <corners android:radius= "5dp" /> <solid android:color= "@color/orange_normal" /> </shape> |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!-- res/drawable/button_shape_pressed.xml --> <shape xmlns:android= "http://schemas.android.com/apk/res/android" android:shape= "rectangle" > <!-- rounded corner --> <corners android:radius= "5dp" /> <!-- fill with two colors, and the two colors change softly --> <!-- <gradient android:angle= "270" android:startcolor= "@color/orange_light" android:endcolor= "@color/orange_normal" android:uselevel= "true" /> --> <solid android:color= "@color/orange_light" /> </shape> |
2、selector实现按下效果
在 drawable 新建 一个 xml 文件, 用 selector 把刚才 建立的两个 xml 文件组织起来
1
2
3
4
5
|
<!-- res/drawable/button_shape.xml --> <selector xmlns:android= "http://schemas.android.com/apk/res/android" > <item android:drawable= "@drawable/button_shape_normal" android:state_pressed= "false" /> <item android:drawable= "@drawable/button_shape_pressed" android:state_pressed= "true" /> </selector> |
3、style实现多个按钮复用
在res/values/styles.xml 里面输入下面代码
1
2
3
4
5
6
7
8
|
<style name= "smsbutton" > <item name= "android:layout_width" >0dp</item> <item name= "android:layout_weight" > 1 </item> <item name= "android:layout_height" >wrap_content</item> <item name= "android:textsize" >20sp</item> <item name= "android:background" > @drawable /button_shape</item> <item name= "android:textcolor" > @color /white</item> </style> |
4、引用圆角按钮
在 layout/fragment_bomb.xml 里面 用 style 引用
1
2
3
4
5
6
|
<button android:id= "@+id/fireup" style= "@style/smsbutton" android:layout_marginend= "20dp" android:layout_marginstart= "20dp" android:text= "@string/fireup" /> |
可以省去建立style的步骤, 直接在layout里面引用即可。
以上就是本文的全部内容,希望对大家的学习android有所帮助。