当我使用graphique方法添加FloatingActionButton时,Android stuio向我显示此错误“floatbutnID<com.google.android.material.floatingactionbutton.FloatingActionButton>:不存在可朗读文本”floatbutnID<com.google.android.material.floatingactionbutton.FloatingActionButton>:不存在朗读文本,如何更正
uoifb46i1#
“可朗读文本”是指系统将在盲人手机中朗读的文本。如果不需要,您可以将其设置为“”。这是朗读文本的属性
android:contentDescription="Your text"
在Stack Overflow上提问之前,你应该仔细地查找信息--这是论坛的规则。请记住这一点,否则你可能会因为重复提问而获得坏名声。我在this问题中3秒内找到了答案
pjngdqdw2#
如果使用xml,请将android:contentDescription="content description"添加到floatingActionButton标记。或在Java中fab.setContentDescription(" content description")fab是浮动操作按钮的名称。示例
android:contentDescription="content description"
floatingActionButton
fab.setContentDescription(" content description")
fab
<com.google.android.material.floatingactionbutton.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:contentDescription="content description"/>
或者在Java中
FloatingActionButton fab = findViewById(R.id.fab); fab.setContentDescription("content description");
2条答案
按热度按时间uoifb46i1#
“可朗读文本”是指系统将在盲人手机中朗读的文本。如果不需要,您可以将其设置为“”。
这是朗读文本的属性
在Stack Overflow上提问之前,你应该仔细地查找信息--这是论坛的规则。请记住这一点,否则你可能会因为重复提问而获得坏名声。我在this问题中3秒内找到了答案
pjngdqdw2#
如果使用xml,请将
android:contentDescription="content description"
添加到floatingActionButton
标记。或在Java中fab.setContentDescription(" content description")
fab
是浮动操作按钮的名称。示例或者在Java中