42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
|
<resources>
|
||
|
|
||
|
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||
|
<item name="colorPrimary">@color/colorPrimary</item>
|
||
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||
|
<item name="colorAccent">@color/colorAccent</item>
|
||
|
</style>
|
||
|
|
||
|
<declare-styleable name="StatusBarHeightView">
|
||
|
<attr name="use_type" format="integer">
|
||
|
<enum name="use_height" value="0" />
|
||
|
<enum name="use_padding_top" value="1" />
|
||
|
</attr>
|
||
|
</declare-styleable>
|
||
|
|
||
|
<!--加载dialog的style-->
|
||
|
<style name="loading_dialog" parent="android:style/Theme.Dialog">
|
||
|
<item name="android:windowFrame">@null</item>
|
||
|
<item name="android:windowNoTitle">true</item>
|
||
|
<item name="android:windowBackground">@android:color/transparent</item>
|
||
|
<item name="android:windowIsFloating">true</item>
|
||
|
<item name="android:backgroundDimEnabled">true</item>
|
||
|
<item name="android:windowContentOverlay">@null</item>
|
||
|
</style>
|
||
|
|
||
|
<!--首页的 内容 style-->
|
||
|
<style name="style_container_home">
|
||
|
<item name="android:layout_width">match_parent</item>
|
||
|
<item name="android:layout_height">0dp</item>
|
||
|
<item name="android:layout_weight">1</item>
|
||
|
</style>
|
||
|
|
||
|
<declare-styleable name="TagFlowLayout">
|
||
|
<attr name="max_select" format="integer" />
|
||
|
<attr name="tag_gravity">
|
||
|
<enum name="left" value="-1" />
|
||
|
<enum name="center" value="0" />
|
||
|
<enum name="right" value="1" />
|
||
|
</attr>
|
||
|
</declare-styleable>
|
||
|
</resources>
|