双击不会在对讲模式下单击父视图
Double tap doesn't click the parent view in talkback mode
我有以下 xml 文件。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linear_layout1"
android:layout_width="match_parent"
android:layout_height="200dp"
android:focusable="true"
android:layout_margin="10dp"
android:orientation="vertical">
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="first text"
android:layout_margin="10dp"/>
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="second text"
android:layout_margin="10dp"/>
</LinearLayout>
</LinearLayout>
我已经为 LinearLayout 和 TextView 设置了点击监听器。
TextView textView1 = (TextView) findViewById(R.id.text1);
LinearLayout linearLayout = findViewById(R.id.linear_layout1);
linearLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(v.getContext(), "Linear layout clicked", Toast.LENGTH_SHORT).show();
}
});
textView1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(v.getContext(), "text view clicked", Toast.LENGTH_SHORT).show();
}
});
我将LinearLayout 设为可聚焦,这样在对讲模式下,它可以获得无障碍焦点。现在当我双击它时,文本视图的点击事件被调用而不是线性布局。
如何让它调用线性布局的点击监听器?
TextView
的高度和宽度有问题
变化自
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="first text"
android:layout_margin="10dp"/>
至
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="first text"
android:layout_margin="10dp"/>
这里有一些有趣的事情。这是 TalkBack* 单击事件处理的两种不同方法。
旧版 TalkBack 传递的事件与普通触摸事件不同。它没有发送物理触摸事件,而是发送调用 "click actions" 的请求。所以,不,点击不会像正常的 "click" 那样最终传播。
TalkBack 现在依靠手势 API 发送实际的物理事件。这些人为的物理点击事件被发送到已通过 TalkBack 向其发送激活操作(双击操作)的视图的中心。
您遇到的问题是,这两种行为将破坏两种明显解决方案中的一种。您使用了一个明显的解决方案(仅使用多个点击侦听器,并假设事件被传递到焦点节点),但它没有奏效,因为您碰巧使用的技术组合是 V2(发送人工硬件点击)。但是,如果您要在三星设备上安装您的应用程序,您很可能会得到您想要的行为......但这并不意味着它可以工作! :)
由于这两种不同的行为,使它普遍工作的唯一方法(所有版本的 TalkBack 和 Android)是覆盖其中一个视图 AccessibilityDelegates(实际上可能是两个视图),并且拦截那些事件。不要让它们通过默认处理程序,这将是上述两种方法之一。相反,调用你想调用的逻辑,并在你自己周围传递通风口。
- 注意:它实际上可能更依赖于Android OS version/manufacturer,但我现在不在我的开发机器上,信不信由你,但浏览了一下Web 浏览器中的 AOSP 代码不会在周日晚上 10 点出现。我可能会在以后用更多细节更新这个答案。
我有同样的问题,我通过创建新视图解决了它,它扩展了 LinearLayout 并且在这个视图中我重写了 onInterceptTouchEvent()
方法。在此方法中检查辅助功能是否打开以及是否选择了 ViewGroup (LinearLayout)。如果是,return true 并拦截此事件。
public class AccessibleLinearLayout extends LinearLayout {
public AccessibleLinearLayout(Context context) {
super(context);
}
public AccessibleLinearLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public AccessibleLinearLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
if (((AccessibilityManager) getContext().getSystemService(Context.ACCESSIBILITY_SERVICE)).isEnabled() && isAccessibilityFocused()) {
return true;
}
return super.onInterceptTouchEvent(ev);
}
}
我不确定你在检查isAccessibilityFocused()
时是否需要检查((AccessibilityManager) getContext().getSystemService(Context.ACCESSIBILITY_SERVICE)).isEnabled()
我有以下 xml 文件。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/linear_layout1"
android:layout_width="match_parent"
android:layout_height="200dp"
android:focusable="true"
android:layout_margin="10dp"
android:orientation="vertical">
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="first text"
android:layout_margin="10dp"/>
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="second text"
android:layout_margin="10dp"/>
</LinearLayout>
</LinearLayout>
我已经为 LinearLayout 和 TextView 设置了点击监听器。
TextView textView1 = (TextView) findViewById(R.id.text1);
LinearLayout linearLayout = findViewById(R.id.linear_layout1);
linearLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(v.getContext(), "Linear layout clicked", Toast.LENGTH_SHORT).show();
}
});
textView1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(v.getContext(), "text view clicked", Toast.LENGTH_SHORT).show();
}
});
我将LinearLayout 设为可聚焦,这样在对讲模式下,它可以获得无障碍焦点。现在当我双击它时,文本视图的点击事件被调用而不是线性布局。
如何让它调用线性布局的点击监听器?
TextView
的高度和宽度有问题
变化自
<TextView
android:id="@+id/text1"
android:layout_width="match_parent"
android:layout_height="100dp"
android:text="first text"
android:layout_margin="10dp"/>
至
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="first text"
android:layout_margin="10dp"/>
这里有一些有趣的事情。这是 TalkBack* 单击事件处理的两种不同方法。
旧版 TalkBack 传递的事件与普通触摸事件不同。它没有发送物理触摸事件,而是发送调用 "click actions" 的请求。所以,不,点击不会像正常的 "click" 那样最终传播。
TalkBack 现在依靠手势 API 发送实际的物理事件。这些人为的物理点击事件被发送到已通过 TalkBack 向其发送激活操作(双击操作)的视图的中心。
您遇到的问题是,这两种行为将破坏两种明显解决方案中的一种。您使用了一个明显的解决方案(仅使用多个点击侦听器,并假设事件被传递到焦点节点),但它没有奏效,因为您碰巧使用的技术组合是 V2(发送人工硬件点击)。但是,如果您要在三星设备上安装您的应用程序,您很可能会得到您想要的行为......但这并不意味着它可以工作! :)
由于这两种不同的行为,使它普遍工作的唯一方法(所有版本的 TalkBack 和 Android)是覆盖其中一个视图 AccessibilityDelegates(实际上可能是两个视图),并且拦截那些事件。不要让它们通过默认处理程序,这将是上述两种方法之一。相反,调用你想调用的逻辑,并在你自己周围传递通风口。
- 注意:它实际上可能更依赖于Android OS version/manufacturer,但我现在不在我的开发机器上,信不信由你,但浏览了一下Web 浏览器中的 AOSP 代码不会在周日晚上 10 点出现。我可能会在以后用更多细节更新这个答案。
我有同样的问题,我通过创建新视图解决了它,它扩展了 LinearLayout 并且在这个视图中我重写了 onInterceptTouchEvent()
方法。在此方法中检查辅助功能是否打开以及是否选择了 ViewGroup (LinearLayout)。如果是,return true 并拦截此事件。
public class AccessibleLinearLayout extends LinearLayout {
public AccessibleLinearLayout(Context context) {
super(context);
}
public AccessibleLinearLayout(Context context, AttributeSet attrs) {
super(context, attrs);
}
public AccessibleLinearLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
if (((AccessibilityManager) getContext().getSystemService(Context.ACCESSIBILITY_SERVICE)).isEnabled() && isAccessibilityFocused()) {
return true;
}
return super.onInterceptTouchEvent(ev);
}
}
我不确定你在检查isAccessibilityFocused()
((AccessibilityManager) getContext().getSystemService(Context.ACCESSIBILITY_SERVICE)).isEnabled()