我有一个MainActivity和另一个在我的SlideTabLayout中的类,该类是一个Fragment活动。我在片段活动中有一个按钮,但是当我尝试从MainActivity更新文本时,它不会更新按钮文本。
public static void toggleControlButton(Button button, String state) {
controlButton.setCompoundDrawablesWithIntrinsicBounds(stopIcon,
null, null, null);
controlButton.setText("Stop");
}
任何提示?