前言
最近在做按钮的时候遇到在给按钮设置一张图片作为背景的同时还要自己定义圆角,最简单的做法就是直接切张圆角图作为按钮就可以了,但是如果不这样该怎么办呢,看代码:
下面来看效果图
一、先建一个圆角的shape文件:
<?xml version="1.0" enCoding="utf-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID"> <corners androID:radius="10dp"/> <stroke androID:wIDth="1dp" androID:color="#FF6238" /></shape>
二、建立List文件:
<?xml version="1.0" enCoding="utf-8"?><@R_227_3419@ xmlns:androID="http://schemas.androID.com/apk/res/androID"> <item androID:drawable="@mipmap/ic_launcher"/> <item androID:drawable="@drawable/shape"/></@R_227_3419@>
三、直接引用:
<TextVIEw androID:gravity="center" androID:background="@drawable/List" androID:layout_wIDth="match_parent" androID:layout_height="50dp" androID:textSize="16sp" androID:textcolor="#FF0000" androID:text="按钮" />
总结
以上就是AndroID中给按钮同时设置背景和圆角的方法,大家都学会了吗?希望这篇文章的内容对大家学习或者使用AndroID能有所帮助,如果有疑问大家可以留言交流。
总结以上是内存溢出为你收集整理的Android中给按钮同时设置背景和圆角示例代码全部内容,希望文章能够帮你解决Android中给按钮同时设置背景和圆角示例代码所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)