accessibilityservice - AccessibilityNodeInfo values -
i have been looking @ sample code , came across value put action, can explain me? have checked android site, couldn't find pointed out values.
can't find reference 16 or 4. node.performaction(16); node.performaction(4);
you using random integers, these refer things, using integers not help!
node.performaction(accessibilitynodeinfo.action_select);
and
node.performaction(4);
are literally identical @ run time. 1 more readable code.
node.performaction(16)
is nothing meaningful , should avoided @ costs! there no accessibilitynodeinfo.action_...... equivalent 16. imagine wouldn't bad, never productive.
Comments
Post a Comment