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);