Make AppBarLayout.LayoutParams toolbarLayoutParams final

This commit is contained in:
Rania Pilioura 2021-05-08 14:59:24 +03:00
parent 247a2b4bf5
commit 6502bceb2e
1 changed files with 1 additions and 1 deletions

View File

@ -690,7 +690,7 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe
//Disable scrolling when profile has no posts
if (profileModel.getMediaCount() == 0){
AppBarLayout.LayoutParams toolbarLayoutParams = (AppBarLayout.LayoutParams) fragmentActivity.getCollapsingToolbarView().getLayoutParams();
final AppBarLayout.LayoutParams toolbarLayoutParams = (AppBarLayout.LayoutParams) fragmentActivity.getCollapsingToolbarView().getLayoutParams();
toolbarLayoutParams.setScrollFlags(0);
}