LONG_TAP のブロードキャストを聞いて、Google 検索を無効にしようとしています。アプリケーションで 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();
}
}