1

我正在尝试使用此代码:

actionToggleButton=new ToggleButton(context);
actionToggleButton.setTextOn(null);
actionToggleButton.setTextOff(null);

但我仍然得到默认文本!我怎样才能清除它?谢谢。

4

2 回答 2

2

试试这个:

    ToggleButton button = new ToggleButton(this);
    button.setText(null);
    button.setTextOn(null);
    button.setTextOff(null);
于 2012-05-28T18:58:41.113 回答
2

您也可以通过textOnandtextOff属性在 XML 中执行此操作:

    <ToggleButton
        android:id="@+id/toggle_filter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textOn="@null"
        android:textOff="@null"/>
于 2017-01-20T14:30:59.933 回答