VidiDin-Android/base/src/main/res/values/attrs.xml

16 lines
728 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- 圆角FrameLayout自定义属性 -->
<declare-styleable name="RemaxRoundedFrameLayout">
<!-- 圆角半径单位dp -->
<attr name="remaxCornerRadius" format="dimension" />
<!-- 左上角圆角半径 -->
<attr name="remaxCornerRadiusTopLeft" format="dimension" />
<!-- 右上角圆角半径 -->
<attr name="remaxCornerRadiusTopRight" format="dimension" />
<!-- 左下角圆角半径 -->
<attr name="remaxCornerRadiusBottomLeft" format="dimension" />
<!-- 右下角圆角半径 -->
<attr name="remaxCornerRadiusBottomRight" format="dimension" />
</declare-styleable>
</resources>