1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00

Added purple-colored indeterminate horizontal progress bar style, in

addition to the determined style.
This commit is contained in:
Christophe Beyls 2014-01-22 23:52:39 +01:00
parent 0fec3b51b4
commit cd169b1680
34 changed files with 32 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 489 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 569 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 589 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 621 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 542 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 631 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 509 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 299 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 583 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 653 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 644 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 707 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 620 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 825 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,020 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false" >
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem1"
android:duration="50"/>
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem2"
android:duration="50"/>
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem3"
android:duration="50"/>
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem4"
android:duration="50"/>
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem5"
android:duration="50"/>
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem6"
android:duration="50"/>
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem7"
android:duration="50"/>
<item
android:drawable="@drawable/progressbar_indeterminate_fosdem8"
android:duration="50"/>
</animation-list>

View file

@ -1,4 +1,4 @@
<resources> <resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="@style/Theme.AppCompat.Light"> <style name="AppTheme" parent="@style/Theme.AppCompat.Light">
<item name="android:actionBarItemBackground">@drawable/selectable_background</item> <item name="android:actionBarItemBackground">@drawable/selectable_background</item>
@ -23,6 +23,7 @@
</style> </style>
<style name="ProgressBar.Fosdem" parent="@style/Widget.AppCompat.ProgressBar.Horizontal"> <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> <item name="android:progressDrawable">@drawable/progress_horizontal</item>
</style> </style>