상태 표시 줄 아래에 겹치는 툴바
내 활동에 appcompat v21 툴바를 갖고 싶습니다. 그러나 구현중인 툴바는 상태 표시 줄 아래에서 겹칩니다. 어떻게 고칠 수 있습니까? 활동 레이아웃 XML은 다음과 같습니다. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical"> <include android:id="@+id/toolbar" layout="@layout/toolbar" /> <FrameLayout android:id="@+id/container" android:layout_width="fill_parent" android:layout_height="0dp" android:layout_weight="1" /> </LinearLayout> 툴바보기 : <?xml version="1.0" encoding="utf-8"?> <android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" …