summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
authorzhu youhua <youhua@codeaurora.org>2015-12-08 17:31:18 +0800
committerLinux Build Service Account <lnxbuild@localhost>2016-08-24 08:18:24 -0600
commit6aaab7cd5ad6b435ee1705ae76f7b066c4c537fd (patch)
treea3497dd29e6c81e3a2404dde8f27d0a362f96674 /res/values
parent50249f459030a693f0659eaa0ecb13d64870031e (diff)
downloadandroid_packages_apps_Dialer-6aaab7cd5ad6b435ee1705ae76f7b066c4c537fd.tar.gz
android_packages_apps_Dialer-6aaab7cd5ad6b435ee1705ae76f7b066c4c537fd.tar.bz2
android_packages_apps_Dialer-6aaab7cd5ad6b435ee1705ae76f7b066c4c537fd.zip
Dialer: support sub and call-type filters for msim call log
- add spinner to select "ALL SIMS", "SIM1", "SIM2" to filter call logs by the subscription. - add spinner to select "ALL CALLS", "INCOMING CALLS ONLY", "OUTGOING CALLS ONLY", "MISSED CALLS ONLY" to filter call logs by the call type. Change-Id: If05058ded351ba20ef7464c99ed55acf301b2949 CRs-Fixed: 934138
Diffstat (limited to 'res/values')
-rw-r--r--res/values/strings.xml10
-rw-r--r--res/values/styles.xml10
2 files changed, 20 insertions, 0 deletions
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 68dd5c6d9..3c68c0cd6 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -1101,4 +1101,14 @@ e mode.</string>
<string name="speed_dial_cancel">Cancel</string>
<string name="speed_dial_ok">OK</string>
+
+ <string name="call_log_show_all_slots">All SIMs</string>
+
+ <string name="call_log_all_calls_header">All calls</string>
+
+ <!-- Text displayed when the list of incoming calls is empty -->
+ <string name="recentIncoming_empty">You have no incoming calls.</string>
+
+ <!-- Text displayed when the list of outgoing calls is empty -->
+ <string name="recentOutgoing_empty">You have no outgoing calls.</string>
</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 75cbb3164..478d6ba72 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -438,4 +438,14 @@
<item name="android:contentInsetStart">@dimen/actionbar_contentInsetStart</item>
<item name="contentInsetStart">@dimen/actionbar_contentInsetStart</item>
</style>
+
+ <style name="CallLogSpinnerStyle">
+ <item name="android:textAppearance">?android:attr/textAppearanceSmall</item>
+ <item name="android:textStyle">bold</item>
+ <item name="android:textColor">@android:color/black</item>
+ <item name="android:gravity">center_vertical</item>
+ <item name="android:ellipsize">marquee</item>
+ <item name="android:singleLine">true</item>
+ <item name="android:textAllCaps">true</item>
+ </style>
</resources>