blob: 86dd2f711afb76e3731624ae5c953e6e93003836 [file]
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file. -->
<resources>
<declare-styleable name="HyperlinkPreference">
<!-- The URL to load when the preference is clicked -->
<attr name="url" format="string" />
<!-- True if the hyperlink should look like an <a> element. Default is false. -->
<attr name="imitateWebLink" format="boolean" />
</declare-styleable>
<declare-styleable name="LearnMorePreference">
<!-- The context that should be sent to HelpAndFeedback activity. -->
<attr name="helpContext" format="string" />
</declare-styleable>
<declare-styleable name="ChromeBasePreference">
<!-- The tint color for the icon set by android:icon. -->
<attr name="iconTint" format="color" />
</declare-styleable>
<declare-styleable name="ChromeSwitchPreference">
<!-- Prevents the summary text from being styled like title text in the
case that the title is empty. -->
<attr name="dontUseSummaryAsTitle" format="boolean" />
<!-- Draws a horizontal divider line at the bottom of the preference. -->
<attr name="drawDivider" format="boolean" />
</declare-styleable>
<declare-styleable name="FloatLabelLayout">
<attr name="floatLabelTextAppearance" format="reference" />
<attr name="floatLabelPaddingLeft" format="reference|dimension" />
<attr name="floatLabelPaddingRight" format="reference|dimension" />
<attr name="floatLabelPaddingTop" format="reference|dimension" />
<attr name="floatLabelPaddingBottom" format="reference|dimension" />
<!-- The hint to display in the floating label -->
<attr name="floatLabelHint" format="reference|string" />
</declare-styleable>
<declare-styleable name="EmptyAlertEditText">
<attr name="alertMessage" format="string" />
</declare-styleable>
<declare-styleable name="PaddedFrameLayout">
<attr name="maxChildWidth" format="dimension" />
<attr name="maxChildHeight" format="dimension" />
</declare-styleable>
<declare-styleable name="BoundedView">
<attr name="maxWidth" format="dimension" />
<attr name="maxWidthLandscape" format="dimension" />
<attr name="maxWidthPortrait" format="dimension" />
<attr name="maxHeight" format="dimension" />
</declare-styleable>
<declare-styleable name="MaterialProgressBar">
<attr name="colorBackground" format="reference|color" />
<attr name="colorProgress" format="reference|color" />
<attr name="colorSecondaryProgress" format="reference|color" />
</declare-styleable>
<declare-styleable name="RadioButtonWithDescription">
<attr name="titleText" format="string" />
<attr name="descriptionText" format="string" />
</declare-styleable>
<declare-styleable name="SpinnerPreference">
<!-- Used to change the SpinnerPreference to display the TextView and the Spinner on the
same line. Devices with a smallest width of less than 360dp will still use two separate
lines. -->
<attr name="singleLine" format="boolean" />
</declare-styleable>
<declare-styleable name="ListMenuButton">
<!-- Used to customize the width of the popup menu. -->
<attr name="menuWidth" format="reference|dimension" />
</declare-styleable>
<declare-styleable name="TextViewWithCompoundDrawables">
<attr name="drawableWidth" format="dimension"/>
<attr name="drawableHeight" format="dimension"/>
<!-- drawableTint wasn't added in Android until API level 23. -->
<attr name="chromeDrawableTint" format="color"/>
</declare-styleable>
</resources>