Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,我有 16 个按钮,当用户点击一个按钮时,我从 db.setText 给它。他现在已经从这些术语中猜到了最终答案。我需要为他在游戏中没有点击的每个按钮加一分。我试过了:
if(!button.isPressed){ points = points + 1; }
这没有用。
制作一个全局计数器并在每次按下按钮时增加它(onClickListener)。然后从按钮总数中减去计数器,这就是你的分数。
将点初始化为 16,然后在每个按钮上单击将其减一。
左点最终将自动等于未按下的按钮数。