Android Button 自带阴影效果另一种解决办法
时间:2020-10-18 11:08:20|栏目:Android代码|点击: 次
在Android 5.0以后的版本中,定义一个button时,系统自动会加一个阴影的效果,有的时候这种效果看起来比较好,有的时候不符合UI的设计要求,这时候就需要手动去掉阴影。
网上很多文章写了解决办法,就是给button加一句话style="?android:attr/borderlessButtonStyle
",这个确实能解决问题,但是又带来了另外一个问题,就是一般情况下,在写布局的时候,都会给每个控件写一个style,这样方便复用,比如我写了一个button,引了一个style,但是这句话又得加一个style,这样肯定就不行了,这时候有另外一个方法来解决,就是给button的style加一个parent。
<Button style="@style/Button_List_Style" android:text="测试按钮" /> <style name="Button_List_Style" parent="@style/Widget.AppCompat.Button.Borderless"> <item name="android:minWidth">100dp</item> <item name="android:minHeight">30dp</item> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:background">@drawable/btn_black_border_list</item> <item name="android:textSize">@dimen/text_size_small</item> <item name="android:textColor">@color/color_black</item> </style>
加上这句parent="@style/Widget.AppCompat.Button.Borderless"
就可以了,这样阴影就没有了。
上一篇:Android编程实现长按弹出选项框View进行操作的方法
栏 目:Android代码
本文标题:Android Button 自带阴影效果另一种解决办法
本文地址:http://www.codeinn.net/misctech/13049.html