Changed playerWidget theme to dark
This commit is contained in:
parent
caa00a97cb
commit
f2175dff16
|
@ -29,7 +29,7 @@
|
||||||
android:icon="@drawable/ic_launcher"
|
android:icon="@drawable/ic_launcher"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
android:logo="@drawable/ic_launcher"
|
android:logo="@drawable/ic_launcher"
|
||||||
android:theme="@style/Theme.AntennaPod.Dark" >
|
android:theme="@style/Theme.AntennaPod.Light" >
|
||||||
<activity
|
<activity
|
||||||
android:name=".activity.MainActivity"
|
android:name=".activity.MainActivity"
|
||||||
android:configChanges="keyboardHidden|orientation"
|
android:configChanges="keyboardHidden|orientation"
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="@color/white" >
|
android:background="#262C31" >
|
||||||
|
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/butPlay"
|
android:id="@+id/butPlay"
|
||||||
|
@ -15,8 +15,8 @@
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_alignParentRight="true"
|
android:layout_alignParentRight="true"
|
||||||
android:layout_margin="12dp"
|
android:layout_margin="12dp"
|
||||||
android:background="?attr/borderless_button"
|
android:background="@drawable/borderless_button_dark"
|
||||||
android:src="@drawable/av_play" />
|
android:src="@drawable/av_play_dark" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/layout_left"
|
android:id="@+id/layout_left"
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_alignParentLeft="true"
|
android:layout_alignParentLeft="true"
|
||||||
android:layout_toLeftOf="@id/butPlay"
|
android:layout_toLeftOf="@id/butPlay"
|
||||||
android:background="?attr/borderless_button"
|
android:background="@drawable/borderless_button_dark"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:orientation="vertical" >
|
android:orientation="vertical" >
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
android:layout_margin="8dp"
|
android:layout_margin="8dp"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:text="@string/no_media_playing_label"
|
android:text="@string/no_media_playing_label"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/white"
|
||||||
android:textSize="18dp"
|
android:textSize="18dp"
|
||||||
android:textStyle="bold" />
|
android:textStyle="bold" />
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="8dp"
|
android:layout_margin="8dp"
|
||||||
android:textColor="@color/ics_gray" />
|
android:textColor="@color/gray" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
|
|
@ -94,9 +94,9 @@ public class PlayerWidgetService extends Service {
|
||||||
if (progressString != null) {
|
if (progressString != null) {
|
||||||
views.setTextViewText(R.id.txtvProgress, progressString);
|
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 {
|
} 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,
|
views.setOnClickPendingIntent(R.id.butPlay,
|
||||||
createMediaButtonIntent());
|
createMediaButtonIntent());
|
||||||
|
|
Loading…
Reference in New Issue