I ported the android application to BB10. In application if keyboard is open at the same time if toast is display it is hide behind the keyboard on BB10 and user not able to see the toast message. In Android application it works fine only issue face is in BB10.
Asked
Active
Viewed 404 times
1 Answers
5
set Toast Gravity Top
Toast t = Toast.makeText(MainActivity.this, "TOP | RIGHT", Toast.LENGTH_LONG);
t.setGravity(Gravity.TOP|Gravity.RIGHT, 0, 0);
t.show();

Nirav Ranpara
- 13,753
- 3
- 39
- 54
-
how to do it in a Blackberry 10 app using qt C++ – Mayank Jan 09 '15 at 09:27