Xamarin.Forms 布局的可访问性

Xamarin.Forms accessibility on layouts

我正在使用 Xamarin.Forms(便携式)为盲人开发应用程序。我可以轻松地为按钮、条目等设置带有效果的对讲内容。但是像 StackLayouts 这样的东西没有控件,所以效果不会附加到它们上。无论哪种方式,Android Talkback 仍然会拾取它们并阅读它们。如何让布局对 Talkback 不可见?

您正在寻找 ImportantForAccessibility 属性。您可能希望将其设置为 ImportantForAccessibility.NoHideDescendants。我对 Xamarin 了解不多,否则我会 post 一个代码示例!

https://developer.xamarin.com/api/type/Android.Views.ImportantForAccessibility/