我正在尝试使用此代码:
actionToggleButton=new ToggleButton(context);
actionToggleButton.setTextOn(null);
actionToggleButton.setTextOff(null);
但我仍然得到默认文本!我怎样才能清除它?谢谢。
我正在尝试使用此代码:
actionToggleButton=new ToggleButton(context);
actionToggleButton.setTextOn(null);
actionToggleButton.setTextOff(null);
但我仍然得到默认文本!我怎样才能清除它?谢谢。
试试这个:
ToggleButton button = new ToggleButton(this);
button.setText(null);
button.setTextOn(null);
button.setTextOff(null);
您也可以通过textOn
andtextOff
属性在 XML 中执行此操作:
<ToggleButton
android:id="@+id/toggle_filter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textOn="@null"
android:textOff="@null"/>