<?xml version="1.0" encoding="utf-8"?>
|
<resources>
|
<declare-styleable name="ExpandButton">
|
<!-- 字间距 -->
|
<attr name="letterSpacing" format="dimension"/>
|
<!-- 展开时显示的文字 -->
|
<attr name="expandedText" format="string"/>
|
<!-- 收起时显示的文字 -->
|
<attr name="collapsedText" format="string"/>
|
<!-- 动画时长 -->
|
<attr name="animDuration" format="integer"/>
|
<!-- 三角形图标与文字的间距 -->
|
<attr name="triangleMargin" format="dimension"/>
|
<!-- 新增属性 -->
|
<attr name="itemSpacing" format="dimension"/>
|
<attr name="iconSize" format="dimension"/>
|
<attr name="iconTextSpacing" format="dimension"/>
|
<!-- 新增展开后的字体大小属性 -->
|
<attr name="expandedTextSize" format="dimension"/>
|
</declare-styleable>
|
|
<declare-styleable name="CustomSearchBar">
|
<!-- 使用android:background属性 -->
|
<attr name="android:background"/>
|
<!-- 搜索图标大小 -->
|
<attr name="searchIconSize" format="dimension"/>
|
<!-- 搜索按钮文字 -->
|
<attr name="searchButtonText" format="string"/>
|
<!-- 提示文字 -->
|
<attr name="searchHint" format="string"/>
|
<!-- 动画时长 -->
|
<attr name="searchAnimDuration" format="integer"/>
|
</declare-styleable>
|
</resources>
|