我的辅助功能服务将通过可聚焦节点。我试图使用focusSearch函数,但这不会给任何节点。但布局包含可聚焦的项目。这是布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="true"
android:text="Button" />
<TextView
android:id="@+id/text"
android:layout_width="122dp"
android:layout_height="fill_parent"
android:text="Hello World2" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:focusable="true"
android:text="Button2" />
</LinearLayout>
所以我尝试的是找到第一个按钮:
AccessibilityNodeInfo root = getRootInActiveWindow();
AccessibilityNodeInfo node1 = null;
node1 = root.findAccessibilityNodeInfosByViewId("my.app:id/button1").get(0);
//returns button view
node1 = root.focusSearch(View.FOCUS_DOWN); //returns null
node1 = root.focusSearch(View.FOCUS_LEFT); //returns null
node1 = root.focusSearch(View.FOCUS_RIGHT); //returns null
node1 = root.focusSearch(View.FOCUS_FORWARD); //returns null
然而,使用findFocus它会返回framelayout
node1 = root.findFocus(AccessibilityNodeInfo.FOCUS_ACCESSIBILITY);
//returns node of the main framelayout
然后我将此节点用于下一次搜索,但没有找到任何内容。
node1 = node1.focusSearch(View.FOCUS_FORWARD); //returns null
当我拨打findfocus
而不是focusSearch
时,我得到了相同的节点
node1 = node1.findFocus(AccessibilityNodeInfo.FOCUS_ACCESSIBILITY);
//returns the same node
所以问题是如何在布局中的可聚焦节点上进行操作?
答案 0 :(得分:3)
这是一种常见的误解。您正在搜索的是可以获取输入焦点的对象(想想EditText控件)。这与Accessibility Focus根本不同。您的布局中没有输入可聚焦控件。
您想要的功能是:
someAccessibilityNodeInfo.getTraversalAfter();
和
someAccessibilityNodeInfo.getTraversalBefore();
没有上/下等效物。虽然你可以根据需要计算出来。您可以将可访问性可聚焦节点的整个层次存储在一个数组中,并根据x和y位置计算上/下。
答案 1 :(得分:1)
完全!返回视图容器,因为它们存在于树中。
您需要的是叶节点。
此代码将为您提供可聚焦的节点(叶节点)列表:
ArrayList<AccessibilityNodeInfo> inputViewsList = new ArrayList<AccessibilityNodeInfo>();
AccessibilityNodeInfo rootNode = getRootInActiveWindow();
refreshChildViewsList(rootNode);
for(AccessibilityNodeInfo mNode : inputViewsList){
if(mNode.isFocusable()){
//do whatever you want with the node...
}
}
refreshChildViewsList
方法:
private void refreshChildViews(AccessibilityNodeInfo rootNode){
int childCount = rootNode.getChildCount();
for(int i=0; i<childCount ; i++){
AccessibilityNodeInfo tmpNode = rootNode.getChildAt(i);
int subChildCount = tmpNode.getChildCount();
if(subChildCount==0){
inputViewsList.add(tmpNode);
return;
} else {
refreshChildViews(tmpNode);
}
}
}
如果此代码存在任何问题,请与我们联系!