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.
探したけど答えが出なかった
私はこの方法でadmobを呼び出しています:
AdView adView = (AdView)this.findViewById(R.id.ad); adView.loadAd(new AdRequest());
わかりましたが、どうすればadmobを非表示にできますか? (ビューを含む)その後、再び有効にできますか?
adView.setVisibility(View.GONE);
編集: に設定することもできます。とadView.setVisibility(View.INVISIBLE);の違いは、このビューが占めるスペースを「節約」しながら、レイアウトからビューを完全に削除することです。INVISIBLEGONEGONEINVISIBLE
adView.setVisibility(View.INVISIBLE);
INVISIBLE
GONE