PlayerAndroid/app/src/main/res/values/swipe_button_attrs.xml
2018-07-27 18:37:34 +05:30

31 lines
No EOL
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="SwipeButton">
<attr name="inner_text" format="string"/>
<attr name="inner_text_color" format="color"/>
<attr name="inner_text_size" format="dimension"/>
<attr name="inner_text_left_padding" format="dimension"/>
<attr name="inner_text_right_padding" format="dimension"/>
<attr name="inner_text_top_padding" format="dimension"/>
<attr name="inner_text_bottom_padding" format="dimension"/>
<attr name="inner_text_background" format="reference"/>
<attr name="button_image_width" format="dimension"/>
<attr name="button_image_height" format="dimension"/>
<attr name="button_trail_enabled" format="boolean"/>
<attr name="button_trail_drawable" format="reference"/>
<attr name="button_image_disabled" format="reference"/>
<attr name="button_image_enabled" format="reference"/>
<attr name="button_left_padding" format="dimension"/>
<attr name="button_right_padding" format="dimension"/>
<attr name="button_top_padding" format="dimension"/>
<attr name="button_bottom_padding" format="dimension"/>
<attr name="button_background" format="reference"/>
<attr name="has_activate_state" format="boolean"/>
<attr name="initial_state" format="enum">
<enum name="enabled" value="0"/>
<enum name="disabled" value="1"/>
</attr>
</declare-styleable>
</resources>