Android 自定义背景文件,android:shape的用法

本文介绍如何在Android中使用Shape XML定义控件样式,包括渐变、填充、描边和圆角等属性的详细配置方法,并提供了一个按钮背景样式的实例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Android中使用shape来定义控件的一些简单显示属性,如按钮的背景等,应用灵活方便。

参考代码如下:

<?xml version="1.0" encoding="utf-8"?>  
<selector xmlns:android="http://schemas.android.com/apk/res/android">  
    <item android:state_pressed="true" >  
        <shape xmlns:android="http://schemas.android.com/apk/res/android"  
            android:shape="rectangle">  
            <!-- 渐变 -->   
            <gradient    
                android:startColor="#55B4FE"    
                android:endColor="#3d8FFB"    
                android:angle="-90"  
                android:type="linear"/>    
            <!-- 描边 -->    
            <stroke android:width="1dip"  
                android:color="#d3d3d3"  
                />  
            <!-- 圆角 -->    
            <corners  
                android:topRightRadius="0dp"       
                android:bottomLeftRadius="10dp"     
                android:topLeftRadius="0dp"      
                android:bottomRightRadius="10dp"      
                />  
              
        </shape>  
          
          
    </item>  
    <item>  
        <shape xmlns:android="http://schemas.android.com/apk/res/android"  
            android:shape="rectangle">  
              
            <solid android:color="#ffffff" />            
            <!-- 描边 -->    
            <stroke android:width="1dip"  
                android:color="#d3d3d3"  
                />  
            <!-- 圆角 -->    
            <corners  
                android:topRightRadius="0dp"       
                android:bottomLeftRadius="10dp"     
                android:topLeftRadius="0dp"      
                android:bottomRightRadius="10dp"      
                />  
              
              
        </shape>  
    </item>  
</selector>  

说明:

gradient:渐变

android:startColor 渐变开始的颜色
android:endColor 渐变结束的颜色
android:centerColor 中间点的颜色
ndroid:angle是渐变角度,必须为45的整数倍。
android:type  linear线性渐变;radial径向渐变
android:gradientRadius 径向渐变的半径

solid:填充
android:color 使用的填充颜色

stroke:描边
android:width 描边的宽度,
android:color 描边的颜色。

我们还可以把描边弄成虚线的形式,设置方式为:
android:dashWidth="5dp" 一个'-'的宽度
android:dashGap="3dp" 间隔的宽度


corners:圆角
android:radius为角的弧度,值越大角越圆。

分开设置:
android:topRightRadius="20dp"    右上角  
android:bottomLeftRadius="20dp"    右下角  
android:topLeftRadius="1dp"    左上角  
android:bottomRightRadius="0dp"    左下角  

padding:内间隔

将代码保存在res/drawable目录中,在使用时直接引入文件即可,如:


<Button   
    android:id="@+id/testButton"   
    android:layout_width="wrap_content"  
    android:layout_height="wrap_content"  
    android:background="@drawable/test_button_bg"/>  
……  


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值