0

嘿,我需要帮助我正在尝试玩井字游戏,但我遇到了“如果”句子的问题。

这是当 3 个圆圈可见时,现在我想让线条可见,但代码不起作用。

if (
    cir9.getVisibility() == View.VISIBLE &&
    cir8.getVisibility() == View.VISIBLE &&
    cir7.getVisibility() == View.VISIBLE
) {
    linea_horizontal.setVisibility(View.VISIBLE);
}
4

1 回答 1

0

使用isShown()方法呢?

if (cir7.isShown() && cir8.isShown() && cir9.isShown()) {
   // make your work
}
else {
  // are not visible
}
于 2013-04-02T07:55:50.000 回答