圆角矩形

二、画圆角矩形


创建 rect_gray.xml文件放在drawable文件夹下面。


<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle">
            <!-- 填充颜色 -->
    <solid android:color="#FFFFFF"></solid>
   
    <!-- 线的宽度,颜色灰色 -->
    <stroke android:width="1dp" android:color="#D5D5D5"></stroke>        
   
    <!-- 矩形的圆角半径 -->
    <corners android:radius="0dp" />       
            
</shape>
而后在布局的xml里面:
做为ImageView或者Linearlayout等做为背景源就能够了。
<LinearLayout
                    android:id="@+id/activity_myhezu_wantchuzu"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:background="@drawable/myhezu_dottedline_rect_green"
                    android:orientation="horizontal" >

 

三、一半圆角:

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
    android:shape="rectangle">
        <corners  android:topLeftRadius="16dp" <!--上面左圆角的半径-->
              android:topRightRadius="16dp"          <!--上面右圆角的半径-->
              android:bottomLeftRadius="0dp"         <!--下面左圆角的半径-->
              android:bottomRightRadius="0dp"/>   <!--下面右圆角的半径-->android


        <gradient android:startColor="#ffffff" 
              android:endColor="#ffffff"
              android:angle="270"/>布局


        <stroke   android:width="1dp" 
              android:color="#80000000" /> 
        </shape>spa

 

相关文章
相关标签/搜索