文章分类:移动开发
个人总结,总是看别人的东西,自己也分享下自己的。呵呵
改变button的形状,有两种方式:
1:方法一:通过在xml的button属性中设置,
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:shadowDx="0"
android:shadowDy="-1"
android:shadowRadius="0.2"
/>
2:第二种方法
在 /res/values/styles.xml 中定义
格式和下面类似
center_vertical|center_horizontal
#FFFFFFFF
#FF000000
0
-1
0.2
16dip
bold
@drawable/btn_custom
true
true
然后再布局的xml文件中,设置如下
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/Button"
/>