穿戴 TileService 布局组件可访问性

huangapple go评论56阅读模式
英文:

Wear TileService Layout Component accessibility

问题

可以通过TileService布局组件像LayoutElementBuilders.Text一样添加可访问性吗?我看不到设置可访问性的API。有人有想法或解决方案吗,请帮助我。

英文:

Any way can i add accessibility to TileService layout component like LayoutElementBuilders.Text. I can't see any api to set accessibility. Anyone have idea or solution, please help me.

答案1

得分: 1

Use the semantics modifier

Text.Builder()
                    .setText("AAA")
                    .setModifiers(
                        Modifiers.Builder()
                            .setSemantics(
                                Semantics.Builder()
                                    .setContentDescription(
                                        "Hello World Text Element"
                                    ).build()
                            ).build()
                    )
英文:

Use the semantics modifier

Text.Builder()
                    .setText("AAA")
                    .setModifiers(
                        Modifiers.Builder()
                            .setSemantics(
                                Semantics.Builder()
                                    .setContentDescription(
                                        "Hello World Text Element"
                                    ).build()
                            ).build()
                    )

huangapple
  • 本文由 发表于 2023年5月24日 21:34:47
  • 转载请务必保留本文链接:https://go.coder-hub.com/76324132.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定