1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-20 17:23:46 +02:00
matomocamp-companion-android/res/values/styles.xml
Christophe Beyls 55cd420395 Improved notifications with an action button allowing to show the room
map image directly.
Event subtitle in notification BigText style is now shown in white,
before the speaker(s).
2014-01-25 19:28:59 +01:00

62 lines
No EOL
2.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="@style/Theme.AppCompat.Light">
<item name="android:actionBarItemBackground">@drawable/selectable_background</item>
<item name="actionBarItemBackground">@drawable/selectable_background</item>
<item name="android:dropDownListViewStyle">@style/DropDownListView.Fosdem</item>
<item name="dropDownListViewStyle">@style/DropDownListView.Fosdem</item>
<item name="android:actionBarStyle">@style/ActionBar.Solid.Fosdem</item>
<item name="actionBarStyle">@style/ActionBar.Solid.Fosdem</item>
<item name="android:textViewStyle">@style/TextView.Fosdem</item>
<item name="android:listViewStyle">@style/ListView.Fosdem</item>
<item name="activatedBackgroundIndicator">@drawable/activated_background</item>
</style>
<style name="DialogTheme" parent="@android:style/Theme.Dialog" />
<style name="ActionBar.Solid.Fosdem" parent="@style/Widget.AppCompat.Light.ActionBar.Solid">
<!-- Only override the progress bar style for modern devices with Holo theme -->
<item name="android:progressBarStyle">@style/ProgressBar.Fosdem</item>
</style>
<style name="DropDownListView.Fosdem" parent="@style/Widget.AppCompat.Light.ListView.DropDown">
<item name="android:listSelector">@drawable/selectable_background</item>
</style>
<style name="ProgressBar.Fosdem" parent="@style/Widget.AppCompat.ProgressBar.Horizontal">
<item name="android:indeterminateDrawable">@drawable/progress_indeterminate_horizontal</item>
<item name="android:progressDrawable">@drawable/progress_horizontal</item>
</style>
<style name="TextView.Fosdem" parent="android:Widget.TextView">
<item name="android:textColorLink">#3679c4</item>
</style>
<style name="ListView.Fosdem" parent="@android:style/Widget.ListView.White">
<item name="android:listSelector">@drawable/selectable_background</item>
</style>
<style name="HeaderStyle">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_marginBottom">5dp</item>
<item name="android:paddingLeft">@dimen/list_item_padding</item>
<item name="android:textSize">14sp</item>
<item name="android:textStyle">bold</item>
<item name="android:textColor">@color/fosdem_purple</item>
</style>
<style name="HeaderLineStyle">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">2dp</item>
<item name="android:background">@color/fosdem_purple</item>
</style>
<style name="RoomImageDialogAnimations">
<item name="android:windowEnterAnimation">@anim/zoom_in</item>
<item name="android:windowExitAnimation">@anim/zoom_out</item>
</style>
</resources>