请有人知道如何在开关按钮的轨道部分设置文本,我需要用java代码而不是xml代码。 Window Authentication Functionality
答案 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);