android shape 圓圈 圓環 圓角


定義圓圈:比如角標:

xml布局文件

          <TextView
           android:id="@+id/item_order_pay_count"
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           android:background="@drawable/ico_ff7b22"
           android:gravity="center"
           />

  xml 背景文件

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval"
    android:useLevel="false">

    <solid android:color="@color/white" />

    <stroke
        android:width="1dp"
        android:color="@color/color_ff7b22" />

    <size
        android:width="15dp"
        android:height="15dp" />
</shape>

 

第二定義圓:

 

xml布局文件

        <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp"
        android:src="@drawable/ico_ed7222" />

xml  背景文件

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval">

    <solid android:color="@color/_ed722e" />
    <size
        android:width="5dp"
        android:height="5dp" />
</shape>

 

圓角巨型  

 

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <stroke
        android:width="1px"
        android:color="#dddddd" />

    <solid android:color="#ffffff"/>

    <corners android:radius="1dp" />

</shape>

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM