1. 首先在drawable文件夹定义一个shape.xml文件,内容如下:
成都创新互联公司专注于网站建设,为客户提供网站设计、网站制作、网页设计开发服务,多年建网站服务经验,各类网站都可以开发,品牌网站制作,公司官网,公司展示网站,网站设计,建网站费用,建网站多少钱,价格优惠,收费合理。
<?xml version="1.0" encoding="UTF-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#e6e6" />
<corners
android:topLeftRadius="10dp"
android:topRightRadius="10dp"
android:bottomRightRadius="10dp"
android:bottomLeftRadius="10dp" />
<padding
android:left="30dp"
android:top="0dp"
android:right="30dp"
android:bottom="0dp"
/>
</shape>
2. 在main.xml文件中,button使用这个shape.xml,如下:
<Button
android:id="@+id/button_next"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/button_next"
android:textSize="@dimen/label_text_size"
android:layout_alignParentBottom="true"
android:layout_centerVertical="true"
android:gravity="center_horizontal|center_vertical"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:background="@drawable/shape"
/>
这时,该button就显示如shape.xml定义的形状。
3. 在代码中动态修改button 背景颜色,代码如下:
GradientDrawable bgShape = (GradientDrawable)buttonNext.getBackground();
bgShape.setColor(Color.BLUE);
分享标题:Androidbutton,xml文件定义形状,代码中修改背景颜色
本文来源:https://www.cdcxhl.com/article30/jhgopo.html
成都网站建设公司_创新互联,为您提供品牌网站设计、做网站、网站收录、网站制作、网站内链、网站改版
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联