Android 画面の要素をプログラムで表示・非表示を切り替える

Android

Android 画面の要素をプログラムで表示・非表示を切り替える

たとえば、deleteButtonというボタンをある時は見せたくない場合は、下記のようにsetVisibilityに4を指定します。

 private static final int INVISIBLE = 4;
 Button deleteButton = (Button) findViewById(R.id.acount_delete);
 deleteButton.setVisibility(INVISIBLE);

非表示にした部分をつめる場合は、GONEを利用します。

 private static final int GONE = 8;
 Button deleteButton = (Button) findViewById(R.id.acount_delete);
 deleteButton.setVisibility(GONE);

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です