Disable scrolling on blank or private profiles

works with MotionLayout
See #1219
This commit is contained in:
Rania Pilioura 2021-05-17 05:38:30 +03:00
parent 3ca326d520
commit 86b724d998

View File

@ -757,6 +757,7 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe
final String postCount = String.valueOf(profileModel.getMediaCount());
SpannableStringBuilder span = new SpannableStringBuilder(getResources().getQuantityString(R.plurals.main_posts_count,
profileModel.getMediaCount() > 2000000000L
? 2000000000
@ -915,7 +916,13 @@ public class ProfileFragment extends Fragment implements SwipeRefreshLayout.OnRe
binding.privatePage2.setVisibility(View.VISIBLE);
binding.postsRecyclerView.setVisibility(View.GONE);
binding.swipeRefreshLayout.setRefreshing(false);
root.getTransition(R.id.transition).setEnable(false);
}
if (profileModel.getMediaCount() == 0) {
root.getTransition(R.id.transition).setEnable(false);
}
}
private void setupButtons(final long profileId) {