1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2025-12-12 15:21:11 +01:00

Added ThemedIntEditTextPreference and ThemedStringEditTextPreference classes

This commit is contained in:
vanitasvitae 2016-10-23 20:58:03 +02:00
parent b4067b6056
commit 7553717f11
Signed by: vanitasvitae
GPG key ID: DCCFB3302C9E4615
15 changed files with 445 additions and 140 deletions

View file

@ -1,9 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="titleText" format="string" />
<attr name="summaryText" format="string" />
<attr name="prefKey" format="string" />
<attr name="showValueInSummary" format="boolean" />
<declare-styleable name="ThemedCheckBoxPreference">
<attr name="titleText" format="string" />
<attr name="summaryText" format="string" />
<attr name="prefKey" format="string" />
<attr name="defaultValue" format="boolean" />
<attr name="titleText" />
<attr name="summaryText" />
<attr name="prefKey" />
<attr name="defaultBoolean" format="boolean" />
</declare-styleable>
<declare-styleable name="ThemedStringEditTextPreference">
<attr name="titleText" />
<attr name="summaryText" />
<attr name="prefKey" />
<attr name="defaultString" format="string" />
<attr name="showValueInSummary" />
</declare-styleable>
<declare-styleable name="ThemedIntEditTextPreference">
<attr name="titleText" />
<attr name="summaryText" />
<attr name="prefKey" />
<attr name="defaultInt" format="string" />
<attr name="showValueInSummary" />
</declare-styleable>
</resources>