summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--AndroidManifest.xml2
-rw-r--r--res/layout/player_widget.xml12
-rw-r--r--src/de/danoeh/antennapod/service/PlayerWidgetService.java4
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" >
<activity
android:name=".activity.MainActivity"
android:configChanges="keyboardHidden|orientation"
diff --git a/res/layout/player_widget.xml b/res/layout/player_widget.xml
index 23a1ffff3..31a7ab2ec 100644
--- a/res/layout/player_widget.xml
+++ b/res/layout/player_widget.xml
@@ -7,7 +7,7 @@
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:background="@color/white" >
+ android:background="#262C31" >
<ImageButton
android:id="@+id/butPlay"
@@ -15,8 +15,8 @@
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_margin="12dp"
- android:background="?attr/borderless_button"
- android:src="@drawable/av_play" />
+ android:background="@drawable/borderless_button_dark"
+ android:src="@drawable/av_play_dark" />
<LinearLayout
android:id="@+id/layout_left"
@@ -24,7 +24,7 @@
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@id/butPlay"
- android:background="?attr/borderless_button"
+ android:background="@drawable/borderless_button_dark"
android:gravity="center_vertical"
android:orientation="vertical" >
@@ -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" />
</LinearLayout>
</RelativeLayout>
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());