728x90
반응형
위와 같다.
Statusbar. 시계와 배터리 정보 등을 볼 수 있는 bar
이것이 툴바를 가리고 있다. (세상에...)
Title이라고 적혀있는 Toolbar를 어떻게 하면 가리지 않고 보이게 할 수 있을까.
아래 예시처럼 최상위 layout에 true값을 적용해주면 된다.
1 2 3 4 5 6 7 8 9 10 11 12 | <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/fullscreen_content" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#0099cc" android:fitsSystemWindows="true" tools:openDrawer="start" tools:context=".webview.WebViewActivity"> | cs |
Toolbar 범위가 잘 보이지 않아서 색깔을 넣어보았다.
Happy Ending~
728x90
반응형
'Android, iOS' 카테고리의 다른 글
Zxing 라이브러리로 QR 코드 스캐너 날로 만들기 + 커스텀 (0) | 2018.06.12 |
---|---|
WebView size 문제로 빡칠 때 (2) | 2018.06.08 |
intent.addFlags로 자주 쓰는 상수 세트 (0) | 2018.05.31 |
화면 전환할 때 IllegalStateException이 나타난다면? commitAllowingStateLoss (0) | 2018.04.02 |
Intent로도 data를 넘기기 어려울 땐? ResultReceiver (0) | 2018.03.28 |
Comment