[Android] 레이아웃/뷰 숨기기 (setVisibility)

선주·2021년 12월 4일
0

Android

목록 보기
2/11
post-thumbnail

INVISIBLE

  • 뷰가 보이지 않지만 공간은 차지한다.
TextView component = findViewById(R.id.component);
component.setVisibility(View.INVISIBLE);
  • 쇠고기 아래의 한 줄을 숨긴 상태

GONE

  • 뷰가 보이지 않으며 공간도 차지하지 않는다.
TextView component = findViewById(R.id.component);
component.setVisibility(View.GONE);
  • 쇠고기 아래의 한 줄을 숨긴 상태
profile
기록하는 개발자 👀

0개의 댓글