A toast is hiding behind a keyboard on the BB10

I ported the Android app to BB10. In the application, if the keyboard is open at the same time, if a toast is displayed, it is hidden behind the keyboard on BB10, and the user cannot see the toast message. In the Android application, it works fine, only the problem occurs in BB10.

+4
source share
1 answer

install Toast Gravity Top

Toast t = Toast.makeText(MainActivity.this, "TOP | RIGHT", Toast.LENGTH_LONG); t.setGravity(Gravity.TOP|Gravity.RIGHT, 0, 0); t.show(); 
+5
source

All Articles