Categories: Android

[안드로이드] setVisibility 사용하기

  안드로이드에서 UI 작업을 하다보면 setVisibility 라는 함수를 자주 사용하게 됩니다. 이 함수는 int 형 인자를 받게 되는데, 저도 처음에는 0~100까지 숫자를 넣어야 되는줄 알았는데, 그게 아니라 아래와 같은 상수를 넣어서 사용을 해야 합니다.
.



 private static final int[] VISIBILITY_FLAGS = {VISIBLE, INVISIBLE, GONE};

    /**
     * This view is visible.  Use with {@link #setVisibility}.
     */
    public static final int VISIBLE = 0x00000000;


    /**
     * This view is invisible, but it still takes up space for layout purposes.
     * Use with {@link #setVisibility}.
     */
    public static final int INVISIBLE = 0x00000004;


    /**
     * This view is invisible, and it doesn’t take any space for layout
     * purposes. Use with {@link #setVisibility}.
     */
    public static final int GONE = 0x00000008;


.
 
 View Class에 있는 상수기 때문에 View.INVISIBLE 과 같이 사용하면 됩니다. 각 상수를 보면 VISIBLE, INVISIBLE는 보이게, 안보이게 처리하는 것이고, GONE은 없는 것과 같이 처리를 하는 것입니다. 어떠한 View를 숨길 때 해당 공간이 비어서 보이게 하고 싶다면 INVISIBLE를 사용하고, 해당 공간을 다른 View가 점유할 수 있게 하려면 GONE를 사용하면 될 것입니다. 반대로다시 보이게 하려면 VISIBLE를 사용하면 됩니다.



dingpong

Share
Published by
dingpong

Recent Posts

LFS error at git checkout in Jenkins

Problem stdout: stderr: Downloading xxxx.a (83 MB) error: git-lfs smudge -- 'xxxx.a' died of signal…

3년 ago

플레이모빌 크리스마스 XXL 6629 산타 해외직구 구매가 배송비

https://www.playmobil.de/playmobil-xxl-weihnachtsmann/6629.html 구매가 : 48.49 유로 (플레이모빌 독일 홈페이지) 결제하는데 안되서 PayPal 로 결제하니 잘 잔행…

3년 ago

코카콜라 제로 355ml 72캔 구매가 (캔당 453원)

롯데온에서 355ml 24캔 롯데카드로 구매시 13,210원 https://www.lotteon.com/p/product/PD36294 APP으로 35,000원 이상 구매시 7,000 포인트 적립 행사…

4년 ago

경동나비엔 온수매트 EQM541-QS (퀸사이즈) 구입가

구입 매장 : 현대 홈쇼핑 (홈쇼핑 방송 중) 모바일 앱 http://www.hyundaihmall.com/front/pda/itemPtc.do?slitmCd=2114353981 최종 결제 가격 :…

4년 ago

PostMessage에 shared_ptr과 같은 스마트 포인터 넣기

PostMessage의 WPARAM 이나 LPARAM 으로 shared_ptr 와 같은 스마트 포인터 객체를 넘기고 싶은 경우가 있습니다.…

4년 ago

RC2255 – named STRINGTABLEs are not allowed

Visual Studio 에서 작업 중 이러한 컴파일 에러가 발생한 케이스가 있었습니다. 이 경우에는 .rc 파일에…

4년 ago