跟踪切换按钮中的文本

时间:2017-06-07 18:43:15

标签: java android button

请有人知道如何在开关按钮的轨道部分设置文本,我需要用java代码而不是xml代码。 Window Authentication Functionality

1 个答案:

答案 0 :(得分:0)

假设这是针对Android切换按钮的,您可以使用以下内容:

//sets text on creation
toggleButton.setText(textOff);

// Sets the text for when the button off.
toggleButton.setTextOff(textOff);

// Sets the text for when the button is on.
toggleButton.setTextOn(textOn);