summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2013-09-10 14:15:38 -0700
committerYorke Lee <yorkelee@google.com>2013-09-10 14:15:38 -0700
commit63e1155b40701b3aae0da43208b55560c7ad6f02 (patch)
tree27ac2c164c6dad882914d1ef53b2d5be9ebbe84e
parentd89b25d5dd4d7aff5d6512835d3b04a1a36e5c2d (diff)
Fix actionbar overlay in all contacts activity
Bug: 10514458 Change-Id: I6a1c77c23796a6f64be5f9eb73c4d1c0ab4561c9
-rw-r--r--AndroidManifest.xml4
-rw-r--r--res/values/styles.xml2
2 files changed, 3 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 542ddd94e..82734b687 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -120,7 +120,7 @@
<activity android:name="com.android.dialer.calllog.CallLogActivity"
android:label="@string/call_log_activity_title"
- android:theme="@style/CallLogActivityTheme"
+ android:theme="@style/DialtactsThemeWithActionBarOverlay"
android:screenOrientation="portrait"
android:icon="@mipmap/ic_launcher_phone">
<intent-filter>
@@ -133,7 +133,7 @@
<activity android:name="com.android.dialer.list.AllContactsActivity"
android:label="@string/show_all_contacts_title"
- android:theme="@style/DialtactsTheme"
+ android:theme="@style/DialtactsThemeWithActionBarOverlay"
android:screenOrientation="portrait">
</activity>
diff --git a/res/values/styles.xml b/res/values/styles.xml
index e7dd9f9b0..9b9924468 100644
--- a/res/values/styles.xml
+++ b/res/values/styles.xml
@@ -72,7 +72,7 @@
<item name="android:textColorPrimary">#FFFFFF</item>
</style>
- <style name="CallLogActivityTheme" parent="DialtactsTheme">
+ <style name="DialtactsThemeWithActionBarOverlay" parent="DialtactsTheme">
<item name="android:windowActionBarOverlay">true</item>
</style>