summaryrefslogtreecommitdiffstats
path: root/res/values
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2015-08-06 15:01:44 -0700
committerTyler Gunn <tgunn@google.com>2015-08-06 15:01:44 -0700
commitc35d396656363774843c84bd138e9f23367a5567 (patch)
tree00b6ee8e3ddf1c38d649ec9003af9cc22489d455 /res/values
parent56769b9225e2380925a3df11651e87f8bd0c6d3e (diff)
downloadandroid_packages_apps_ContactsCommon-c35d396656363774843c84bd138e9f23367a5567.tar.gz
android_packages_apps_ContactsCommon-c35d396656363774843c84bd138e9f23367a5567.tar.bz2
android_packages_apps_ContactsCommon-c35d396656363774843c84bd138e9f23367a5567.zip
Add CallHistory activity to CallSubjectDialog, plus others.
- Shows last 5 call subjects. - Add OnPhoneNumberPickerActionListener for handling callbacks from search results to trigger making a call with a subject. Bug: 22685114 Change-Id: I3b1e6660c8fa4b3c289e538d673a82caabb57a73
Diffstat (limited to 'res/values')
-rw-r--r--res/values/colors.xml3
-rw-r--r--res/values/styles.xml12
2 files changed, 15 insertions, 0 deletions
diff --git a/res/values/colors.xml b/res/values/colors.xml
index 7c212680..0dc85b51 100644
--- a/res/values/colors.xml
+++ b/res/values/colors.xml
@@ -163,4 +163,7 @@
<!-- Text color for the SEND & CALL button on the call subject dialog. -->
<color name="call_subject_button">#00c853</color>
+
+ <!-- Background color for the call subject history view. -->
+ <color name="call_subject_history_background">#ffffff</color>
</resources>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index 94916b88..6ab07d3e 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -98,4 +98,16 @@ background and text color. See also android:style/Widget.Holo.TextView.ListSepar
<item name="android:windowFullscreen">true</item>
<item name="android:windowIsFloating">true</item>
</style>
+
+ <!-- Theme used for the call subjection history selection activity. -->
+ <style name="Theme.CallSubjectSelector" parent="android:Theme.Material.Light">
+ <item name="android:windowIsTranslucent">true</item>
+ <item name="android:windowNoTitle">true</item>
+ <item name="android:windowBackground">@android:color/transparent</item>
+ <item name="android:backgroundDimEnabled">false</item>
+ <item name="android:windowTranslucentStatus">false</item>
+ <item name="android:windowTranslucentNavigation">false</item>
+ <item name="android:windowDrawsSystemBarBackgrounds">false</item>
+ <item name="android:windowContentOverlay">@null</item>
+ </style>
</resources>