Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将android应用程序移植到BB10。在应用程序中,如果键盘同时打开,如果显示 toast,则它隐藏在 BB10 上的键盘后面,用户无法看到 toast 消息。在 Android 应用程序中,它工作正常,只有问题面在 BB10 中。
设置吐司重力顶部
Toast t = Toast.makeText(MainActivity.this, "TOP | RIGHT", Toast.LENGTH_LONG); t.setGravity(Gravity.TOP|Gravity.RIGHT, 0, 0); t.show();