F ragment 里面的tooloar不会实时刷新
DavidMGT opened this issue · 1 comments
DavidMGT commented
F ragment 里面的tooloar不会实时刷新
DavidMGT commented
ThemeUtils.refreshUI(getContext(), new ThemeUtils.ExtraRefreshable() {
@OverRide
public void refreshGlobal(Activity activity) {
//for global setting, just do once
if (Build.VERSION.SDK_INT >= 21) {
ActivityManager.TaskDescription taskDescription =
new ActivityManager.TaskDescription(null, null,
ThemeUtils.getThemeAttrColor(context, android.R.attr.colorPrimary));
setTaskDescription(taskDescription);
getWindow().setStatusBarColor(
ThemeUtils.getColorById(context, R.color.theme_color_primary_dark));
}
}
@Override
public void refreshSpecificView(View view) {
//TODO: will do this for each traversal
} ThemeUtils.refreshUI(getContext(), new ThemeUtils.ExtraRefreshable() {
@Override
public void refreshGlobal(Activity activity) {
//for global setting, just do once
if (Build.VERSION.SDK_INT >= 21) {
ActivityManager.TaskDescription taskDescription =
new ActivityManager.TaskDescription(null, null,
ThemeUtils.getThemeAttrColor(context, android.R.attr.colorPrimary));
setTaskDescription(taskDescription);
getWindow().setStatusBarColor(
ThemeUtils.getColorById(context, R.color.theme_color_primary_dark));
}
}
@Override
public void refreshSpecificView(View view) {
//TODO: will do this for each traversal
}
}
);
}
);