Skip to content

Commit

Permalink
Stop back transition jank from avatar viewer to settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-signal committed Jun 18, 2020
1 parent 555104a commit 021a160
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Expand Up @@ -44,6 +44,7 @@ protected void onPreCreate() {
@Override
protected void onCreate(Bundle savedInstanceState, boolean ready) {
super.onCreate(savedInstanceState, ready);
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
setContentView(R.layout.group_manage_activity);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
Expand Down
Expand Up @@ -55,6 +55,7 @@ protected void onPreCreate() {
@Override
protected void onCreate(Bundle savedInstanceState, boolean ready) {
super.onCreate(savedInstanceState, ready);
getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
setContentView(R.layout.recipient_manage_activity);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
Expand Down

0 comments on commit 021a160

Please sign in to comment.