Enhanced animation on closing about activity

This commit is contained in:
stefan-niedermann 2019-09-16 19:29:06 +02:00
parent 23652e55a3
commit 9875160c24

View file

@ -88,4 +88,10 @@ public class AboutActivity extends AppCompatActivity {
}
}
}
@Override
public boolean onSupportNavigateUp() {
finish(); // close this activity as oppose to navigating up
return true;
}
}