mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
ToolBar削除
This commit is contained in:
parent
e1129bc009
commit
fafb996453
|
@ -95,32 +95,6 @@ public class HomeTopFragment extends Fragment {
|
||||||
listItemAdapter.notifyItemRangeInserted(0, listItems.size());
|
listItemAdapter.notifyItemRangeInserted(0, listItems.size());
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
CollapsingToolbarLayout collapsingToolbarLayout = view.findViewById(R.id.collapsing_toolbar);
|
|
||||||
Toolbar toolbar = view.findViewById(R.id.toolbar);
|
|
||||||
|
|
||||||
// Set the Toolbar
|
|
||||||
((AppCompatActivity)getActivity()).setSupportActionBar(toolbar);
|
|
||||||
|
|
||||||
// Set the title of the CollapsingToolbarLayout
|
|
||||||
collapsingToolbarLayout.setTitle("Lacerta");
|
|
||||||
|
|
||||||
AppBarLayout appBarLayout = view.findViewById(R.id.app_bar_layout);
|
|
||||||
appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
|
|
||||||
@Override
|
|
||||||
public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
|
|
||||||
if (Math.abs(verticalOffset) == appBarLayout.getTotalScrollRange()) {
|
|
||||||
// Collapsed
|
|
||||||
getActivity().getWindow().setStatusBarColor(ContextCompat.getColor(getActivity(), one.nem.lacerta.shared.ui.R.color.colorSecondaryContainer));
|
|
||||||
} else if (verticalOffset == 0) {
|
|
||||||
// Expanded
|
|
||||||
getActivity().getWindow().setStatusBarColor(ContextCompat.getColor(getActivity(), one.nem.lacerta.shared.ui.R.color.colorSurface));
|
|
||||||
} else {
|
|
||||||
// Somewhere in between
|
|
||||||
// Here you can add a color transition if you want
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user