| 1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <resources>
- <declare-styleable name="BenefitView">
- </declare-styleable>
- <!-- Switch 에 스타일을 적용하기 위한 레퍼런스 속성 -->
- <declare-styleable name="CustomTheme">
- <attr name="customSwitchStyle" format="reference"/>
- </declare-styleable>
- <!-- CustomSquareRadio 레퍼런스 속성-->
- <declare-styleable name="CustomSquareCheckBox">
- <attr name="checkBoxText" format="reference|string"/>
- </declare-styleable>
- <!-- CustomSquareArrowCheckBox 레퍼런스 속성-->
- <declare-styleable name="CustomSquareArrowCheckBox">
- <attr name="ArrowCheckBoxText" format="reference|string"/>
- </declare-styleable>
- <!-- BlackButtonWithArrow 레퍼런스 속성-->
- <declare-styleable name="WhiteButtonWithArrowView">
- <attr name="text" format="reference|string"/>
- </declare-styleable>
- <declare-styleable name="SpannedGridLayoutManager">
- <attr name="android:orientation" />
- <attr name="spanCount" />
- <attr name="aspectRatio" format="string" />
- </declare-styleable>
- </resources>
|