Added icons to podcast settings
This commit is contained in:
parent
a6e4c4756c
commit
06fe53f607
|
@ -4,22 +4,26 @@
|
|||
|
||||
<SwitchPreference
|
||||
android:key="keepUpdated"
|
||||
android:icon="?attr/navigation_refresh"
|
||||
android:title="@string/keep_updated"
|
||||
android:summary="@string/keep_updated_summary"/>
|
||||
|
||||
<Preference
|
||||
android:key="authentication"
|
||||
android:icon="?attr/ic_key"
|
||||
android:title="@string/authentication_label"
|
||||
android:summary="@string/authentication_descr"/>
|
||||
|
||||
<ListPreference
|
||||
android:key="feedPlaybackSpeed"
|
||||
android:icon="?attr/av_speed"
|
||||
android:title="@string/playback_speed"
|
||||
android:summary="@string/pref_feed_playback_speed_sum"/>
|
||||
|
||||
<ListPreference
|
||||
android:entries="@array/spnAutoDeleteItems"
|
||||
android:entryValues="@array/spnAutoDeleteValues"
|
||||
android:icon="?attr/content_discard"
|
||||
android:title="@string/auto_delete_label"
|
||||
android:key="autoDelete"/>
|
||||
|
||||
|
|
|
@ -15,10 +15,6 @@ import de.danoeh.antennapod.core.util.gui.NotificationUtils;
|
|||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Timer;
|
||||
import java.util.concurrent.ScheduledExecutorService;
|
||||
import java.util.concurrent.ScheduledFuture;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
public class DownloadServiceNotification {
|
||||
private static final String TAG = "DownloadSvcNotification";
|
||||
|
@ -154,7 +150,7 @@ public class DownloadServiceNotification {
|
|||
.setContentText(context.getText(R.string.authentication_notification_msg))
|
||||
.setStyle(new NotificationCompat.BigTextStyle().bigText(context.getText(R.string.authentication_notification_msg)
|
||||
+ ": " + resourceTitle))
|
||||
.setSmallIcon(R.drawable.ic_notification_key)
|
||||
.setSmallIcon(R.drawable.ic_key_white)
|
||||
.setAutoCancel(true)
|
||||
.setContentIntent(ClientConfig.downloadServiceCallbacks.getAuthentificationNotificationContentIntent(context, downloadRequest));
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:height="24dp" android:viewportHeight="24.0"
|
||||
android:viewportWidth="24.0" android:width="24dp">
|
||||
<path android:fillColor="#FF757575"
|
||||
android:pathData="M12.65,10C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H17v4h4v-4h2v-4H12.65zM7,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
|
||||
</vector>
|
|
@ -52,6 +52,7 @@
|
|||
<attr name="ic_select_all" format="reference"/>
|
||||
<attr name="ic_select_none" format="reference"/>
|
||||
<attr name="ic_sort" format="reference"/>
|
||||
<attr name="ic_key" format="reference"/>
|
||||
<attr name="ic_sd_storage" format="reference"/>
|
||||
<attr name="ic_create_new_folder" format="reference"/>
|
||||
<attr name="ic_cast_disconnect" format="reference"/>
|
||||
|
|
|
@ -74,6 +74,7 @@
|
|||
<item name="ic_bug">@drawable/ic_bug_grey600_24dp</item>
|
||||
<item name="ic_bookmark">@drawable/ic_bookmark_grey600_24dp</item>
|
||||
<item name="batch_edit_fab_icon">@drawable/ic_fab_edit_white</item>
|
||||
<item name="ic_key">@drawable/ic_key_grey600</item>
|
||||
<item name="master_switch_background">@color/master_switch_background_light</item>
|
||||
<item name="currently_playing_background">@color/highlight_light</item>
|
||||
|
||||
|
@ -160,6 +161,7 @@
|
|||
<item name="ic_bug">@drawable/ic_bug_white_24dp</item>
|
||||
<item name="ic_bookmark">@drawable/ic_bookmark_white_24dp</item>
|
||||
<item name="batch_edit_fab_icon">@drawable/ic_fab_edit_white</item>
|
||||
<item name="ic_key">@drawable/ic_key_white</item>
|
||||
<item name="master_switch_background">@color/master_switch_background_dark</item>
|
||||
<item name="currently_playing_background">@color/highlight_dark</item>
|
||||
<item name="preferenceTheme">@style/PreferenceThemeOverlay.v14.Material</item>
|
||||
|
|
Loading…
Reference in New Issue