Android中shape的使用

來源:互聯網
上載者:User

標籤:android   http   io   color   ar   os   使用   sp   strong   

Android中常常使用shape來定義控制項的一些顯示內容,今天看了一些shape的使用,對shape有了大體的瞭解,稍作總結:

  1. 一、在res/drawable檔案夾下建立一個名為gradient_box的xml檔案:

    <?xml version="1.0" encoding="utf-8"?>

    <!-- 

    shape drawable xml檔案中定義的一個幾何圖形,定義在res/drawable/目錄下,檔案名稱filename稱為訪問的資源ID

    在代碼中通過R.drawable.filename進行訪問,在xml檔案中通過@[package:]drawable/filename進行訪問。

     -->

     <!-- 

      android:shape=["rectangle" | "oval" | "line" | "ring"]

      shape的形狀,預設為矩形,可以設定為矩形(rectangle)、橢圓形(oval)、線性形狀(line)、環形(ring)

      下面的屬性只有在android:shape="ring時可用:

      android:innerRadius 尺寸,內環的半徑。

      android:innerRadiusRatio 浮點型,以環的寬度比率來表示內環的半徑,

      例如,如果android:innerRadiusRatio,表示內環半徑等於環的寬度除以5,這個值是可以被覆蓋的,預設為9.

      android:thickness 尺寸,環的厚度

      android:thicknessRatio 浮點型,以環的寬度比率來表示環的厚度,例如,如果android:thicknessRatio="2",

      那麼環的厚度就等於環的寬度除以2。這個值是可以被android:thickness覆蓋的,預設值是3.

      android:useLevel boolean值,如果當做是LevelListDrawable使用時值為true,否則為false.

      -->

    <shape

        xmlns:android="http://schemas.android.com/apk/res/android"

        android:shape="rectangle">

        

        <!--

          圓角

          android:radius   整型 半徑

          android:topLeftRadius   整型 左上方半徑

          android:topRightRadius   整型 右上方半徑

          android:bottomLeftRadius 整型 左下角半徑

          android:bottomRightRadius 整型 右下角半徑

         -->

         <corners  

            android:radius="8dp"

            android:topLeftRadius="5dp"

            android:topRightRadius="15dp"

            android:bottomLeftRadius="20dp"

            android:bottomRightRadius="25dp"  

            />

         

         <!--

            漸層色

            android:startColor  顏色值 起始顏色

            android:endColor    顏色值 結束顏色

            android:centerColor 整型   漸層中間顏色,即開始顏色與結束顏色之間的顏色

            android:angle       整型   漸層角度(PS:當angle=0時,漸層色是從左向右。 然後逆時針方向轉,當angle=90時為從下往上。angle必須為45的整數倍)

            android:type        ["linear" | "radial" | "sweep"] 漸層類型(取值:linear、radial、sweep)

                                linear 線性漸層,這是預設設定

                                radial 放射性漸層,以開始色為中心。

                                sweep 掃描線式的漸層。

           android:useLevel   ["true" | "false"] 如果要使用LevelListDrawable對象,就要設定為true。設定為true無漸層。false有漸層色

           android:gradientRadius 整型 漸層色半徑.當 android:type="radial" 時才使用。單獨使用 android:type="radial"會報錯。

           android:centerX     整型   漸層中心X點座標的相對位置

           android:centerY   整型   漸層中心Y點座標的相對位置

        -->

        <gradient

            android:startColor="#FFFF0000"

            android:endColor="#80FF00FF"

            android:angle="45"

            /> 

            

        <!--

              內邊距,即內容與邊的距離 

              android:left   整型 左內邊距

              android:top   整型 上內邊距

              android:right   整型 右內邊距

              android:bottom 整型 下內邊距

          -->

         <padding 

             android:left="10dp"

             android:top="10dp"

             android:right="10dp"

             android:bottom="10dp"

             />

         

        <!-- 

           size 大小

           android:width 整型 寬度

           android:height 整型 高度

        -->

        <size

            android:width="600dp"

            />

        

        <!--

            內部填充

            android:color 顏色值 填充顏色

        -->

        <solid 

            android:color="#ffff9d77"

            />

        

         <!--

             描邊

             android:width 整型 描邊的寬度

             android:color 顏色值 描邊的顏色

             android:dashWidth 整型 表示描邊的樣式是虛線的寬度, 值為0時,表示為實線。值大於0則為虛線。

             android:dashGap   整型 表示描邊為虛線時,虛線之間的間隔 即“ - - - - ”

         -->

         <stroke 

            android:width="2dp"

            android:color="#dcdcdc"  

            /> 

    </shape>

  2.  

    二、在視窗布局檔案中將步驟一中建立的檔案作為TextView的背景:

    <?xml version="1.0" encoding="utf-8"?>

    <LinearLayout

        xmlns:android="http://schemas.android.com/apk/res/android"

        android:layout_width="fill_parent"

        android:layout_height="fill_parent">

        <TextView

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="ShapeTest"

            android:background="@drawable/gradient_box"

            android:textSize="24.0dp"

            android:textColor="@android:color/black"

            />

    </LinearLayout>

  3.  

    三、運行效果展示:


先看下面的代碼:
        <shape>
            <!-- 實心 -->
            <solid android:color="#ff9d77"/>
            <!-- 漸層 -->
            <gradient
                android:startColor="#ff8c00"    <!-- 起始顏色 -->
                android:endColor="#FFFFFF"
                android:angle="270" />
            <!-- 描邊 -->
            <stroke
                android:width="2dp"
                android:color="#dcdcdc" />
            <!-- 圓角 -->
            <corners
                android:radius="2dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>

solid:實心,就是填充的意思
android:color指定填充的顏色

gradient:漸層
android:startColor和android:endColor分別為起始和結束顏色,ndroid:angle是漸層角度,必須為45的整數倍。
另外漸層預設的模式為android:type="linear",即線性漸層,可以指定漸層為放射狀漸層,android:type="radial",放射狀漸層需要指定半徑android:gradientRadius="50"。

stroke:描邊
android:width="2dp" 描邊的寬度,android:color 描邊的顏色。
我們還可以把描邊弄成虛線的形式,設定方式為:
android:dashWidth="5dp" 
android:dashGap="3dp"
其中android:dashWidth表示‘-‘這樣一個橫線的寬度,android:dashGap表示之間隔開的距離。

corners:圓角
android:radius為角的弧度,值越大角越圓。
我們還可以把四個角設定成不同的角度,方法為:
<corners 
        android:topRightRadius="20dp"    右上方
        android:bottomLeftRadius="20dp"    右下角
        android:topLeftRadius="1dp"    左上方
        android:bottomRightRadius="0dp"    左下角
 />
這裡有個地方需要注意,bottomLeftRadius是右下角,而不是左下角,這個有點鬱悶,不過不影響使用,記得別搞錯了就行。
還有網上看到有人說設定成0dp無效,不過我在測試中發現是可以的,我用的是2.2,可能修複了這個問題吧,如果無效的話那就只能設成1dp了。

padding:間隔
這個就不用多說了,XML布局檔案中經常用到。


大體的就是這樣,以下是一個使用的具體樣本:用在Selector中作為Button的背景,分別定義了按鈕的一般狀態、獲得焦點狀態和按下時的狀態,具體代碼如下:

main.xml:
<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="TestShapeButton"
    android:background="@drawable/button_selector"
    />

button_selector.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" >
        <shape>
            <!-- 漸層 -->
            <gradient
                android:startColor="#ff8c00"        
                android:endColor="#FFFFFF"
                android:type="radial"                         <!-- 放射狀漸層型 --> 
                android:gradientRadius="50" />
            <!-- 描邊 -->
            <stroke
                android:width="2dp"
                android:color="#dcdcdc"
                android:dashWidth="5dp"           <!-- 虛線寬 -->
                android:dashGap="3dp" />         <!-- 虛線間隙 -->
            <!-- 圓角 -->
            <corners
                android:radius="2dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

    <item android:state_focused="true" >
        <shape>
            <gradient
                android:startColor="#ffc2b7"
                android:endColor="#ffc2b7"
                android:angle="270" />
            <stroke
                android:width="2dp"
                android:color="#dcdcdc" />
            <corners
                android:radius="2dp" />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>

    <item>       
        <shape>
            <solid android:color="#ff9d77"/>
            <stroke
                android:width="2dp"
                android:color="#fad3cf" />
            <corners 
                android:topRightRadius="5dp"
                android:bottomLeftRadius="5dp"
                android:topLeftRadius="0dp"
                android:bottomRightRadius="0dp"
            />
            <padding
                android:left="10dp"
                android:top="10dp"
                android:right="10dp"
                android:bottom="10dp" />
        </shape>
    </item>
</selector>

運行效果如:

一般狀態:

 

獲得焦點狀態:

 

按下狀態:

 

Android中shape的使用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.