Android布局——shape的使用

Shape:用代码生成图片且图片可以随意更改,既方便又节省空间。
Shape生成自定义图形的方法:
在res/drawble下建立一个xml;
在代码中引用这个xml文件,引用方式和图片一样,

定义shape图形的代码语法:


<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="ring"
    android:useLevel="false"
    android:innerRadius="40dp"
    android:thickness="3dp">
    
    <gradient android:type="radial"
        android:gradientRadius="150"
        android:centerY="0.1"
        android:centerX="0.2"
        android:startColor="@android:color/holo_green_dark"
        android:endColor="@android:color/white"/>
    
    <size android:width="90dp"
        android:height="90dp"/>
    
shape>


    
    
    
    

你可能感兴趣的:(Andriod)