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.
ダニの画像があります。現時点では、GONE/VISIBLEを使用して可視性を設定する方法を知っています。
tick.setVisibility(View.VISIBLE);
ifステートメントを使用して画像が表示されているかどうかを検出できるようにしたい。
if (tick is visible){ i++ }
ありがとう
if (View.VISIBLE == tick.getVisibility()) { i++; }
このコードを試してみてください。
if (ticket.getVisiblity() == View.VISIBLE) { i++; }