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

16 lines
728 B
XML
Raw Normal View History

2025-12-17 05:41:41 +00:00
<?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>