zoukankan      html  css  js  c++  java
  • android shap画圆(空心圆、实心圆)

    实心圆:

    <?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/colorWhite" />
        <stroke
            android:width="1dp"
            android:color="@color/colorWhite" />
        <size
            android:width="10dp"
            android:height="10dp" />
    </shape>
    

      

    空心圆:

    <?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/red"/>-->
        <stroke
            android:width="1dp"
            android:color="@color/colorWhite" />
        <size
            android:width="10dp"
            android:height="10dp" />
    </shape>
    

      

    带白边的红圆

    <?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/red" />
    
        <stroke
    
            android:width= "1dp"
    
            android:color= "@color/white" />
    
        <size android:width= "20dp"
    
              android:height= "20dp" />
    
    </shape>
    

      

  • 相关阅读:
    ABAP术语-Interface
    ABAP术语-Interface Parameter
    ABAP术语-Implementation
    ABAP术语-IDOC
    ABAP术语-IAC (Internet Application Components)
    ABAP术语-HTML
    ABAP术语-Function Module
    ABAP术语-Function Library
    ABAP术语-Function Group
    PyCharm的小技巧
  • 原文地址:https://www.cnblogs.com/mmykdbc/p/10937244.html
Copyright © 2011-2022 走看看