attrs.xml 1.25 KB
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <declare-styleable name="CirclePercentView">
        <attr name="radius" format="dimension" />
        <attr name="stripeWidth" format="dimension" /><!--色带宽度-->
        <attr name="percent" format="integer" /><!--百分比 最大值为100-->
        <attr name="smallColor" format="color" /><!--色带宽度-->
        <!--外圈颜色-->
        <attr name="bigColor" format="color" />

        <!--中间字体颜色-->
        <attr name="centerTextSize" format="dimension" />
        <!--色带宽度-->
    </declare-styleable>


    <declare-styleable name="FivePersonIconView">
        <attr name="showRightFlag" format="boolean" />
    </declare-styleable>


    <declare-styleable name="ScrollLayout">

        <attr name="minOffset" format="dimension" />

        <attr name="maxOffset" format="dimension" />

        <attr name="exitOffset" format="dimension" />

        <attr name="mode">
            <flag name="open" value="0x0" />
            <flag name="close" value="0x1" />
            <flag name="exit" value="0x2" />
        </attr>

        <attr name="allowHorizontalScroll" format="boolean" />

        <attr name="isSupportExit" format="boolean" />

    </declare-styleable>
</resources>