diff options
author | tmfang <tmfang@google.com> | 2018-11-21 18:23:21 +0800 |
---|---|---|
committer | tmfang <tmfang@google.com> | 2018-11-22 11:15:17 +0800 |
commit | dd7f99ba879d3da08d02e7cafc3bca52cf5e0481 (patch) | |
tree | c358d6d8888274ff1525a6073fe5a71bd5cbd24c /src/com/android/settings/widget/EntityHeaderController.java | |
parent | dbbbd7a83d14c53e9558aa82fe3c95652d6da39c (diff) |
Fix action bar color in App info header
- Action bar color is same as status bar.
Test: visual
Fixes: 119893936
Change-Id: I8806295f9f42b27d14eb7f3521907a3a234b9593
Diffstat (limited to 'src/com/android/settings/widget/EntityHeaderController.java')
-rw-r--r-- | src/com/android/settings/widget/EntityHeaderController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/settings/widget/EntityHeaderController.java b/src/com/android/settings/widget/EntityHeaderController.java index 853313fd32..267838cc0a 100644 --- a/src/com/android/settings/widget/EntityHeaderController.java +++ b/src/com/android/settings/widget/EntityHeaderController.java @@ -321,7 +321,7 @@ public class EntityHeaderController { } actionBar.setBackgroundDrawable( new ColorDrawable( - Utils.getColorAttrDefaultColor(activity, android.R.attr.colorPrimary))); + Utils.getColorAttrDefaultColor(activity, android.R.attr.colorPrimaryDark))); actionBar.setElevation(0); if (mRecyclerView != null && mLifecycle != null) { ActionBarShadowController.attachToRecyclerView(mActivity, mLifecycle, mRecyclerView); |