Skip to content

Commit

Permalink
don't show on-screen keyboard when resuming TWT (requested by mrwow042)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathisdt committed Feb 4, 2024
1 parent 9fd15a3 commit 0596113
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -904,6 +904,12 @@ protected void onResume() {
binding.drawer.closeDrawer(GravityCompat.START, false);

refreshView();

binding.main.text.setFocusableInTouchMode(false);
binding.main.text.setFocusable(false);
binding.main.text.setFocusableInTouchMode(true);
binding.main.text.setFocusable(true);

super.onResume();
}

Expand Down

0 comments on commit 0596113

Please sign in to comment.