diff options
author | PauloftheWest <paulofthewest@google.com> | 2014-10-30 08:01:30 -0700 |
---|---|---|
committer | PauloftheWest <paulofthewest@google.com> | 2014-11-13 15:05:02 -0800 |
commit | 63f7bc87d8b5ec3c9fb6b48ecd4d66607aa1e7a4 (patch) | |
tree | 17299cc42bd5916cc7e6212fd243546541d93b8e /res | |
parent | 26104298eb53d2dfa693eec32934f9ac0aa3d525 (diff) | |
download | packages_apps_Settings-63f7bc87d8b5ec3c9fb6b48ecd4d66607aa1e7a4.zip packages_apps_Settings-63f7bc87d8b5ec3c9fb6b48ecd4d66607aa1e7a4.tar.gz packages_apps_Settings-63f7bc87d8b5ec3c9fb6b48ecd4d66607aa1e7a4.tar.bz2 |
Created Multi-SIM notifications.
+ On Multi-SIM devices a notificaiton will pop up when a SIM card is
added, removed, or replaced.
+ The notification informs the user there has been a change in SIMs and
they can tap the notification to go SIM Card Settings.
Bug: 18293625
Change-Id: Iad1e5e0cf469e7bdfc43b2c18dd0586d042bb784
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable-hdpi/ic_sim_card_alert_white_48dp.png | bin | 0 -> 412 bytes | |||
-rw-r--r-- | res/drawable-mdpi/ic_sim_card_alert_white_48dp.png | bin | 0 -> 321 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/ic_sim_card_alert_white_48dp.png | bin | 0 -> 516 bytes | |||
-rw-r--r-- | res/drawable-xxhdpi/ic_sim_card_alert_white_48dp.png | bin | 0 -> 718 bytes | |||
-rw-r--r-- | res/drawable-xxxhdpi/ic_sim_card_alert_white_48dp.png | bin | 0 -> 931 bytes | |||
-rw-r--r-- | res/values/colors.xml | 2 | ||||
-rw-r--r-- | res/values/strings.xml | 4 |
7 files changed, 6 insertions, 0 deletions
diff --git a/res/drawable-hdpi/ic_sim_card_alert_white_48dp.png b/res/drawable-hdpi/ic_sim_card_alert_white_48dp.png Binary files differnew file mode 100644 index 0000000..c8fbf42 --- /dev/null +++ b/res/drawable-hdpi/ic_sim_card_alert_white_48dp.png diff --git a/res/drawable-mdpi/ic_sim_card_alert_white_48dp.png b/res/drawable-mdpi/ic_sim_card_alert_white_48dp.png Binary files differnew file mode 100644 index 0000000..18cd7f9 --- /dev/null +++ b/res/drawable-mdpi/ic_sim_card_alert_white_48dp.png diff --git a/res/drawable-xhdpi/ic_sim_card_alert_white_48dp.png b/res/drawable-xhdpi/ic_sim_card_alert_white_48dp.png Binary files differnew file mode 100644 index 0000000..6d983b7 --- /dev/null +++ b/res/drawable-xhdpi/ic_sim_card_alert_white_48dp.png diff --git a/res/drawable-xxhdpi/ic_sim_card_alert_white_48dp.png b/res/drawable-xxhdpi/ic_sim_card_alert_white_48dp.png Binary files differnew file mode 100644 index 0000000..6c8dd1f --- /dev/null +++ b/res/drawable-xxhdpi/ic_sim_card_alert_white_48dp.png diff --git a/res/drawable-xxxhdpi/ic_sim_card_alert_white_48dp.png b/res/drawable-xxxhdpi/ic_sim_card_alert_white_48dp.png Binary files differnew file mode 100644 index 0000000..e8b6667 --- /dev/null +++ b/res/drawable-xxxhdpi/ic_sim_card_alert_white_48dp.png diff --git a/res/values/colors.xml b/res/values/colors.xml index 9e3161d..a5abbbe 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -72,4 +72,6 @@ <color name="switch_accent_color">#ff7fcac3</color> <color name="wifi_divider">#ffe0e0e0</color> + <color name="sim_noitification">@*android:color/material_deep_teal_500</color> + </resources> diff --git a/res/values/strings.xml b/res/values/strings.xml index f6f4d5a..415c4c9 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -5548,6 +5548,10 @@ <string name="preferred_network_offload_popup">Disabling Network Name Broadcast will prevent automatic connection to hidden networks.</string> <!-- Summary text describing signal strength to the user. [CHAR LIMIT=60] --> <string name="sim_signal_strength"><xliff:g id="dbm">%1$d</xliff:g> dBm <xliff:g id="asu">%2$d</xliff:g> asu</string> + <!-- Title for SIM card notification. [CHAR LIMIT=40] --> + <string name="sim_notification_title">SIM cards changed.</string> + <!-- Message under title informing the user to touch to go to SIM Cards in Settings. [CHAR LIMIT=40] --> + <string name="sim_notification_summary">Touch to set up</string> <!-- This is a divider in the SIM cards preferences that is the header of various settings where the user chooses which SIM to use for phone calls, data, and SMS messages [CHAR LIMIT=50] --> <string name="sim_pref_divider">Preferred SIM for</string> |