Toolbar를 만들었는데 Statusbar가 가리고 있다면??
728x90
반응형


위와 같다.


Statusbar. 시계와 배터리 정보 등을 볼 수 있는 bar

이것이 툴바를 가리고 있다. (세상에...)

Title이라고 적혀있는 Toolbar를 어떻게 하면 가리지 않고 보이게 할 수 있을까. 


답은 fitsSystemWindows에 있다.

아래 예시처럼 최상위 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
반응형