View의 Visibility 설정하기

2015. 8. 4. 02:08 IT/Android

View를 상속하고 있는 객체면 모두 가능하다.

예를들어서 버튼으로 보면

Button button= (Button) findViewById(R.id.button);

 

button.setVisibility(View.GONE);         //화면에서도 사라지고 버튼 동작도 안된다.

button.setVisibility(View.INVISIBLE);   //화면에서는 사라지지만 투명하게 보이는 느낌을 준다.

button.setVisibility(View.VISIBLE);      //평상시하고 똑같은 모습이 보여진다.

'IT > Android' 카테고리의 다른 글

Failure [INSTALL_FAILED_OLDER_SDK] 해결 방법  (0) 2015.08.27
AsyncTask 사용 관련  (0) 2015.08.16
Activity를 Dialog 형태로 띄우기  (0) 2015.07.23
파일 업로드 위한 lib, 에러  (0) 2015.07.13
Android Studio에서 lib 추가하기  (0) 2015.07.13

Recent Posts

Recent Comments

Recent Trackbacks

Copyright © 집착남의 이야기 All Rights Reserved | JB All In One Version 0.1 Designed by CMSFactory.NET