Twidere-App-Android-Twitter.../twidere/src/main/res/values/attrs.xml

101 lines
4.6 KiB
XML
Raw Normal View History

2014-07-03 07:48:39 +02:00
<?xml version="1.0" encoding="utf-8"?>
<resources>
2014-07-03 09:58:09 +02:00
<declare-styleable name="Twidere">
2014-11-19 06:06:09 +01:00
<attr name="cardActionButtonStyle" format="reference"/>
<attr name="profileImageStyle" format="reference"/>
<attr name="profileImageStyleLarge" format="reference"/>
<attr name="menuIconColor" format="color"/>
<attr name="menuIconColorDisabled" format="color"/>
<attr name="menuIconColorActionBar" format="color"/>
<attr name="messageBubbleColor" format="color"/>
<attr name="cardItemBackgroundColor" format="color"/>
<attr name="linePageIndicatorStyle" format="reference"/>
2014-07-03 09:58:09 +02:00
</declare-styleable>
2015-03-11 15:15:32 +01:00
<declare-styleable name="ColorLabelView" >
<attr name="ignorePadding" format="boolean"/>
<attr name="backgroundColor" format="color"/>
</declare-styleable>
2014-07-03 09:58:09 +02:00
<declare-styleable name="TabPagerIndicator">
<attr name="tabStripColor" format="color"/>
<attr name="tabIconColor" format="color"/>
<attr name="tabLabelColor" format="color"/>
<attr name="tabHorizontalPadding" format="dimension"/>
<attr name="tabVerticalPadding" format="dimension"/>
<attr name="tabDividerVerticalPadding" format="dimension"/>
<attr name="tabDividerHorizontalPadding" format="dimension"/>
<attr name="tabExpandEnabled" format="boolean"/>
<attr name="tabShowDivider" format="boolean"/>
<attr name="tabDisplayOption"/>
2014-07-03 09:58:09 +02:00
</declare-styleable>
<declare-styleable name="LinePageIndicator">
<!-- Whether or not the indicators should be centered. -->
<attr name="centered" format="boolean"/>
2014-07-03 09:58:09 +02:00
<!-- Color of the unselected lines that represent the pages. -->
<attr name="unselectedColor" format="color"/>
2014-07-03 09:58:09 +02:00
<!-- Color of the selected line that represents the current page. -->
<attr name="selectedColor" format="color"/>
2014-07-03 09:58:09 +02:00
<!-- Width of each indicator line. -->
<attr name="lineWidth" format="dimension"/>
2014-07-03 09:58:09 +02:00
<!-- Width of each indicator line's stroke. -->
<attr name="strokeWidth" format="dimension"/>
2014-07-03 09:58:09 +02:00
<!-- Width of the gap between each indicator line. -->
<attr name="gapWidth" format="dimension"/>
2014-07-03 09:58:09 +02:00
<!-- View background -->
<attr name="android:background"/>
2014-07-03 09:58:09 +02:00
</declare-styleable>
<declare-styleable name="ValueDependencyPreference">
<attr name="dependencyKey" format="string"/>
<attr name="dependencyValues" format="reference"/>
<attr name="dependencyValueDefault" format="string"/>
2014-07-03 09:58:09 +02:00
</declare-styleable>
<declare-styleable name="AccountsListPreference">
<attr name="switchKey" format="string"/>
<attr name="switchDefault" format="boolean"/>
2014-07-03 09:58:09 +02:00
</declare-styleable>
<declare-styleable name="NotificationTypePreference">
<attr name="notificationType"/>
2014-07-03 09:58:09 +02:00
</declare-styleable>
<declare-styleable name="SeekBarDialogPreference">
<attr name="max" format="integer"/>
<attr name="min" format="integer"/>
<attr name="step" format="integer"/>
<attr name="progressTextSuffix" format="string"/>
</declare-styleable>
<declare-styleable name="AssetFontTextView">
<attr name="fontPath" format="string"/>
2014-07-03 09:58:09 +02:00
</declare-styleable>
2014-11-19 06:06:09 +01:00
<declare-styleable name="IconActionButton">
<attr name="iabColor" format="color"/>
<attr name="iabActivatedColor" format="color"/>
<attr name="iabDisabledColor" format="color"/>
2014-11-19 06:06:09 +01:00
</declare-styleable>
<declare-styleable name="ShapedImageView">
<attr name="sivBorder" format="boolean"/>
<attr name="sivBorderWidth" format="dimension"/>
<attr name="sivBorderColor" format="color"/>
<attr name="sivBackgroundColor" format="color"/>
<attr name="sivElevation" format="dimension"/>
<attr name="sivCornerRadius" format="dimension"/>
<attr name="sivCornerRadiusRatio" format="fraction"/>
<attr name="sivShape"/>
</declare-styleable>
2014-12-01 17:04:55 +01:00
<declare-styleable name="HeaderDrawerLayout">
<attr name="headerLayout" format="reference"/>
<attr name="contentLayout" format="reference"/>
</declare-styleable>
2014-07-03 09:58:09 +02:00
<attr name="notificationType">
<flag name="none" value="0"/>
<flag name="ringtone" value="1"/>
<flag name="vibration" value="2"/>
<flag name="light" value="4"/>
2014-07-03 09:58:09 +02:00
</attr>
<attr name="tabDisplayOption">
<flag name="label" value="0x1"/>
<flag name="icon" value="0x2"/>
</attr>
<attr name="sivShape">
<enum name="circle" value="0x1"/>
<enum name="rectangle" value="0x2"/>
</attr>
2014-07-03 07:48:39 +02:00
</resources>