From f2175dff1652e9e8c47edfac9a4e5b66204a0524 Mon Sep 17 00:00:00 2001 From: daniel oeh Date: Fri, 23 Nov 2012 18:53:57 +0100 Subject: [PATCH] Changed playerWidget theme to dark --- AndroidManifest.xml | 2 +- res/layout/player_widget.xml | 12 ++++++------ .../antennapod/service/PlayerWidgetService.java | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index e20ede334..2ed5857c2 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -29,7 +29,7 @@ android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:logo="@drawable/ic_launcher" - android:theme="@style/Theme.AntennaPod.Dark" > + android:theme="@style/Theme.AntennaPod.Light" > + android:background="#262C31" > + android:background="@drawable/borderless_button_dark" + android:src="@drawable/av_play_dark" /> @@ -35,7 +35,7 @@ android:layout_margin="8dp" android:maxLines="1" android:text="@string/no_media_playing_label" - android:textColor="@color/black" + android:textColor="@color/white" android:textSize="18dp" android:textStyle="bold" /> @@ -44,7 +44,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="8dp" - android:textColor="@color/ics_gray" /> + android:textColor="@color/gray" /> diff --git a/src/de/danoeh/antennapod/service/PlayerWidgetService.java b/src/de/danoeh/antennapod/service/PlayerWidgetService.java index 90692080a..dd4598e9c 100644 --- a/src/de/danoeh/antennapod/service/PlayerWidgetService.java +++ b/src/de/danoeh/antennapod/service/PlayerWidgetService.java @@ -94,9 +94,9 @@ public class PlayerWidgetService extends Service { if (progressString != null) { views.setTextViewText(R.id.txtvProgress, progressString); } - views.setImageViewResource(R.id.butPlay, R.drawable.av_pause); + views.setImageViewResource(R.id.butPlay, R.drawable.av_pause_dark); } else { - views.setImageViewResource(R.id.butPlay, R.drawable.av_play); + views.setImageViewResource(R.id.butPlay, R.drawable.av_play_dark); } views.setOnClickPendingIntent(R.id.butPlay, createMediaButtonIntent());