我正在尝试收听 LONG_TAP 的广播以覆盖谷歌搜索。我希望我的应用程序定义一个 LONG_TAP 手势。请建议一种替代方法或解决方案... 代码:
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
if (intent.getAction().equals("com.google.glass.action.LONG_TAP")) {
//abortBroadcast();
System.out.println("Yaay..!!! could listen to the long tap");
//abortBroadcast();
}
}