diff options
author | Shaotang Li <shaotangli@google.com> | 2018-03-30 15:26:12 +0800 |
---|---|---|
committer | Shaotang Li <shaotangli@google.com> | 2018-03-31 11:09:30 +0800 |
commit | aab7756f08d91c5e69be293d8a4744e4371f5887 (patch) | |
tree | cbde56273c31f68c89f586d2397b73cc1e06b22a /src/com/android/settings/widget/EntityHeaderController.java | |
parent | 1967396c09d0c46d8499a5d8f52164d10fe6f0fb (diff) |
Use colorPrimary for EntityHeader's background.
Bug: 76219670
Test: check color from screen manually.
Change-Id: If13d5cbd2bd7db1c6d9c9f840281601ab78ba267
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 4ebc369891..617e09205c 100644 --- a/src/com/android/settings/widget/EntityHeaderController.java +++ b/src/com/android/settings/widget/EntityHeaderController.java @@ -307,7 +307,7 @@ public class EntityHeaderController { return this; } actionBar.setBackgroundDrawable( - new ColorDrawable(Utils.getColorAttr(activity, android.R.attr.colorSecondary))); + new ColorDrawable(Utils.getColorAttr(activity, android.R.attr.colorPrimary))); actionBar.setElevation(0); if (mRecyclerView != null && mLifecycle != null) { ActionBarShadowController.attachToRecyclerView(mActivity, mLifecycle, mRecyclerView); |