本文整理汇总了Java中android.accessibilityservice.AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS属性的典型用法代码示例。如果您正苦于以下问题:Java AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS属性的具体用法?Java AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS怎么用?Java AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类android.accessibilityservice.AccessibilityServiceInfo
的用法示例。
在下文中一共展示了AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS属性的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: onCreate
@Override
public void onCreate() {
super.onCreate();
tipViewController=TipViewController.getInstance();
mAccessibilityServiceInfo=new AccessibilityServiceInfo();
mAccessibilityServiceInfo.feedbackType=FEEDBACK_GENERIC;
mAccessibilityServiceInfo.eventTypes=AccessibilityEvent.TYPE_VIEW_CLICKED|AccessibilityEvent.TYPE_VIEW_LONG_CLICKED|AccessibilityEvent.TYPE_WINDOW_STATE_CHANGED;
int flag=0;
if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.LOLLIPOP){
flag=flag|AccessibilityServiceInfo.FLAG_RETRIEVE_INTERACTIVE_WINDOWS;
}
if (Build.VERSION.SDK_INT>=Build.VERSION_CODES.JELLY_BEAN_MR2){
flag=flag|AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS;
}
mAccessibilityServiceInfo.flags=flag;
mAccessibilityServiceInfo.notificationTimeout=100;
setServiceInfo(mAccessibilityServiceInfo);
}
示例2: observeKey
public void observeKey() {
if (mListeningKey)
return;
mScriptRuntime.ensureAccessibilityServiceEnabled();
AccessibilityService service = mAccessibilityBridge.getService();
if (service == null)
throw new ScriptException("AccessibilityService = null");
if ((service.getServiceInfo().flags & AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS) == 0) {
throw new ScriptException(mContext.getString(R.string.text_should_enable_key_observing));
}
ensureHandler();
mLoopers.waitWhenIdle(true);
mListeningKey = true;
mAccessibilityBridge.ensureServiceEnabled();
service.getOnKeyObserver().addListener(this);
}
示例3: observeKey
public void observeKey() {
if (mListeningKey)
return;
AccessibilityService service = mAccessibilityBridge.getService();
if (service == null)
throw new ScriptException("AccessibilityService = null");
if ((service.getServiceInfo().flags & AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS) == 0) {
throw new ScriptException(mContext.getString(R.string.text_should_enable_key_observing));
}
ensureHandler();
mLoopers.waitWhenIdle(true);
mListeningKey = true;
mAccessibilityBridge.ensureServiceEnabled();
service.getOnKeyObserver().addListener(this);
}
示例4: initServiceInfo
protected void initServiceInfo() {
mInfo.eventTypes = AccessibilityEvent.TYPES_ALL_MASK;
mInfo.notificationTimeout = 100;
// This is the KEY (to KeyEvents)! Sweet deal.
mInfo.flags = AccessibilityServiceInfo.FLAG_REQUEST_FILTER_KEY_EVENTS;
// We'll respond with a popup (visual), and possibly a noise (audible)
// and/ or a vibration (haptic). No spoken feedback here!
mInfo.feedbackType = (AccessibilityServiceInfo.FEEDBACK_VISUAL |
AccessibilityServiceInfo.FEEDBACK_AUDIBLE |
AccessibilityServiceInfo.FEEDBACK_HAPTIC );
setServiceInfo(mInfo);
}