圓角矩形

二、畫圓角矩形


創建 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

 

相關文章
相關標籤/搜索