码迷,mamicode.com
首页 > 其他好文 > 详细

关于button去掉自带阴影效果的方法

时间:2018-05-27 13:38:55      阅读:653      评论:0      收藏:0      [点我收藏+]

标签:ext   text   button   androi   top   width   roi   int   去掉   

在button的属性设置里加上:

style=”?android:attr/borderlessButtonStyle” 

即:

 1   <Button
 2       android:layout_width="fill_parent"
 3       android:layout_height="50dp"
 4       android:layout_marginTop="20dp"
 5       android:gravity="center"
 6       android:layout_marginLeft="20dp"
 7       android:layout_marginRight="20dp"
 8       android:textSize="15sp"
 9       android:textColor="#50000000"
10       style="?android:attr/borderlessButtonStyle" />

此方法适用于API11及以上

关于button去掉自带阴影效果的方法

标签:ext   text   button   androi   top   width   roi   int   去掉   

原文地址:https://www.cnblogs.com/yang12318/p/9095442.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!