我是BlackBerry App开发的新手。我希望能够在BlackBerry(我的情况下为8900)打开时能够收听按键事件,并且在所有屏幕上都可以这样做吗?
如果是这样,那么有人能指引我朝着正确的方向前进。我已经看过Interface KeyListener。
import net.rim.device.api.system.*;
全部谢谢
答案 0 :(得分:6)
实现类似以下的keylistenerClass:
import model.Profile;
import net.rim.device.api.system.KeyListener;
import net.rim.device.api.ui.Keypad;
public final class ShortcutHandler implements KeyListener {
public boolean keyChar(char key, int status, int time) {
return false;
}
public boolean keyDown(int keycode, int time) {
if (Keypad.KEY_ESCAPE == Keypad.key(keycode)) {
// Consume the event.
// Here I'm consuming the event for the escape key
return true;
}
//let the system to pass the event to another listener.
return false;
}
public boolean keyRepeat(int keycode, int time) {
return false;
}
public boolean keyStatus(int keycode, int time) {
return false;
}
public boolean keyUp(int keycode, int time) {
return false;
}
}
然后在您的应用程序构造函数
中public Application() {
//Add the listener to the system for this application
addKeyListener(new ShortcutHandler());
}
我确认当应用程序在后台时它正在工作。
答案 1 :(得分:3)
据我了解,您希望收听设备上运行的所有应用程序中的所有关键事件,而不仅仅是在您的应用程序中 我认为这是不可能的。
更新
音量增大和减小键如何工作? - Abs 11小时前
如果您想说所有应用程序都从卷键接收关键事件,那不是真的。 RIM OS将接收这些事件,然后更新所有音频组件,如警报,音频,播放器等。
您可以使用此示例轻松检查:
请执行以下操作:
代码:
import net.rim.device.api.system.KeyListener;
import net.rim.device.api.ui.MenuItem;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.component.LabelField;
import net.rim.device.api.ui.component.Menu;
import net.rim.device.api.ui.container.MainScreen;
public class KeyListenerApp extends UiApplication implements KeyListener {
Scr mScreen;
public KeyListenerApp() {
mScreen = new Scr();
pushScreen(mScreen);
addKeyListener(this);
}
public static void main(String[] args) {
KeyListenerApp app = new KeyListenerApp();
app.enterEventDispatcher();
}
private void updateScreen(final String text) {
mScreen.addLine(text);
}
public boolean keyChar(char key, int status, int time) {
updateScreen("keyChar " + key);
return true;
}
public boolean keyDown(int keycode, int time) {
updateScreen("keyDown " + keycode);
return true;
}
public boolean keyRepeat(int keycode, int time) {
updateScreen("keyRepeat " + keycode);
return true;
}
public boolean keyStatus(int keycode, int time) {
updateScreen("keyStatus " + keycode);
return true;
}
public boolean keyUp(int keycode, int time) {
updateScreen("keyUp " + keycode);
return true;
}
}
class Scr extends MainScreen {
int mEventsCount = 0;
LabelField mEventsStatistic = new LabelField("events count: "
+ String.valueOf(mEventsCount));
public Scr() {
super(VERTICAL_SCROLL | VERTICAL_SCROLLBAR);
add(mEventsStatistic);
}
public void addLine(final String text) {
getApplication().invokeLater(new Runnable() {
public void run() {
mEventsStatistic.setText("events count: "
+ String.valueOf(++mEventsCount));
insert(new LabelField(text), 1);
}
});
}
protected void makeMenu(Menu menu, int instance) {
super.makeMenu(menu, instance);
menu.add(goBGMenuItem);
}
MenuItem goBGMenuItem = new MenuItem("go backgroun", 0, 0) {
public void run() {
getApplication().requestBackground();
}
};
}
答案 2 :(得分:1)
我认为它可以起作用
UiApplication
甚至Application
Keylistener
的实现(如果需要,也可以扩展Thread
)addKeyListener()
KeyListener
实施方案添加到您的应用中
答案 3 :(得分:1)
上面给出的代码肯定有效,但有一个问题。您将无法在本机应用程序上捕获按键,例如呼叫处理短信传入浏览和填充内容。系统会为这些应用生成全局事件。就像您可以在应用程序处于后台时定义点击例程,但该例程的功能仅限于您的应用程序。它不会影响其他应用程序。