i try to set transparant status bar android, but fit system windows not work on ViewPager. Its Still not full windows like this...
and this my xml.
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/coordinatorLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true" />
<LinearLayout ../>
<View ../>
<Button../>
<Button../>
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
Can you help me, how to fix it ? thanks