43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<declare-styleable name="DiscreteScrollView">
|
|
<attr name="dsv_orientation" format="enum">
|
|
<enum name="horizontal" value="0" />
|
|
<enum name="vertical" value="1" />
|
|
</attr>
|
|
</declare-styleable>
|
|
|
|
<declare-styleable name="CustomCircleImageView">
|
|
<attr name="civ_border_width" format="dimension" />
|
|
<attr name="civ_border_color" format="color" />
|
|
<attr name="civ_border_overlay" format="boolean" />
|
|
<attr name="civ_fill_color" format="color" />
|
|
</declare-styleable>
|
|
<declare-styleable name="CustomRatingBar">
|
|
<!--宽-->
|
|
<attr name="elenmentWidth" format="dimension" />
|
|
<!--高-->
|
|
<attr name="elenmentHeight" format="dimension" />
|
|
<!--单元间距-->
|
|
<attr name="elenmentPadding" format="dimension" />
|
|
<!--单元总数-->
|
|
<attr name="elenmentCount" format="integer" />
|
|
<!--空资源-->
|
|
<attr name="elenmentEmpty" format="reference" />
|
|
<!--满资源-->
|
|
<attr name="elenmentFill" format="reference" />
|
|
<!--半资源-->
|
|
<attr name="elenmentHarf" format="reference" />
|
|
<!--是否可点击-->
|
|
<attr name="clickable" format="boolean" />
|
|
<!--当前进度-->
|
|
<attr name="elenmentStep" format="float" />
|
|
<!--进度方式 半个还是整个-->
|
|
|
|
<attr name="stepSize">
|
|
<enum name="Half" value="0" />
|
|
<enum name="Full" value="1" />
|
|
</attr>
|
|
|
|
</declare-styleable>
|
|
</resources> |