You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.7 KiB
45 lines
1.7 KiB
<?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="android:Theme.Light">
|
|
<!--
|
|
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. -->
|
|
</style>
|
|
|
|
<style name="Title">
|
|
<item name="android:textSize">@dimen/title_size</item>
|
|
<item name="android:textColor">@color/title_color</item>
|
|
<item name="android:clickable">false</item>
|
|
<item name="android:longClickable">false</item>
|
|
</style>
|
|
|
|
<style name="Text">
|
|
<item name="android:textSize">@dimen/small_size</item>
|
|
<item name="android:textColor">@color/title_color</item>
|
|
<item name="android:clickable">false</item>
|
|
<item name="android:longClickable">false</item>
|
|
</style>
|
|
|
|
<style name="BottomBarButton">
|
|
<item name="android:layout_width">match_parent</item>
|
|
<item name="android:layout_height">match_parent</item>
|
|
<item name="android:paddingTop">0dip</item>
|
|
<item name="android:paddingLeft">0dip</item>
|
|
<item name="android:paddingRight">0dip</item>
|
|
<item name="android:paddingBottom">0dip</item>
|
|
<item name="android:textSize">12sp</item>
|
|
<item name="android:textStyle">bold</item>
|
|
</style>
|
|
</resources>
|