Style action bar during onResume instead of onCreate

Change-Id: Ib57bf128b644737b5a34238ec85ca6d740543c5f
Fix: 64284689
Bug: 64297479
Test: robotests
This commit is contained in:
Fan Zhang
2017-08-02 10:47:37 -07:00
parent 446c5b08b1
commit 50eb81f114
3 changed files with 26 additions and 18 deletions

View File

@@ -116,7 +116,7 @@ public class AccountDetailDashboardFragment extends DashboardFragment {
mRemoveAccountController = new RemoveAccountPreferenceController(context, this);
controllers.add(mRemoveAccountController);
controllers.add(new AccountHeaderPreferenceController(
context, getLifecycle(), getActivity(), this, getArguments()));
context, getLifecycle(), getActivity(), this /* host */, getArguments()));
return controllers;
}