我有一个按钮的onclick监听器。当我点击按钮时,有没有办法让文字改变颜色,直到我的新活动出现?
答案 0 :(得分:2)
您也可以在按钮上使用setTextColor(),因为它会扩展TextView(您可以在该页面上按Ctrl + F查找“setTextColor()”以查找引用,它位于“继承”下XML属性“)。因此,当按下按钮时,您将使用button.setTextColor(newColorInt);
并在加载完成时button.setTextColor(oldColorInt);