设置说明不起作用

时间:2012-09-15 11:33:45

标签: android

TextView Txt1 = new TextView(this);
Txt1.setText("describe");
Txt1.setClickable(true);
Txt1.setContentDescription("this is description of text");
Txt1.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 16);
Txt1.setTextColor(Color.rgb(187, 88, 15));
Txt1.setPadding(10, 10, 0, 0);
Txt1.setTypeface(Typeface.SERIF,Typeface.BOLD);

我尝试将setContentDescription用于文本视图,但如果我将光标放在文本上方,则不会显示描述。该怎么做

1 个答案:

答案 0 :(得分:0)

documentations setContentDescription()可以将文字说明与视图相关联。文档声明它主要用于支持可访问性, 因此我认为它可以支持屏幕阅读器。

对于没有文字表示的视图尤其如此(例如,ImageButton)。