38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
|
|
<!--
|
|
Base application theme, dependent on API level. This theme is replaced
|
|
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
|
|
-->
|
|
<style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
|
<!--
|
|
Theme customizations available in newer API levels can go in
|
|
res/values-vXX/styles.xml, while customizations related to
|
|
backward-compatibility can go here.
|
|
-->
|
|
</style>
|
|
|
|
<!-- Application theme. -->
|
|
<style name="AppTheme" parent="AppBaseTheme">
|
|
|
|
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
|
|
<item name="ptrHeaderStyle">@style/Widget.Custom.PtrHeader</item>
|
|
</style>
|
|
|
|
<!--
|
|
ptrHeaderStyle above refers to this style which contains all of the
|
|
DefaultHeaderTransformer customization values. The name and parent
|
|
can be anything, but only the attributes defined in
|
|
library/res/attrs.xml are actually read in.
|
|
-->
|
|
<style name="Widget.Custom.PtrHeader" parent="android:Widget">
|
|
|
|
<!-- The strings to be displayed at the various states -->
|
|
<item name="ptrPullText">@string/pull_text</item>
|
|
<item name="ptrRefreshingText">@string/refreshing_text</item>
|
|
<item name="ptrReleaseText">@string/release_text</item>
|
|
</style>
|
|
|
|
</resources>
|