Подогнать весь экран (внизу и строка состояния) ViewPager - PullRequest
0 голосов
/ 18 февраля 2019

У меня проблемы с заполнением всего экрана фоном.У меня есть main_activity с зеленым фоном, чтобы проверить, заполняет ли он весь экран и работает ли он.Основное действие правильно заполняет весь экран, как я хочу.

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_content"
    android:background="@color/colorPrimaryDark"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

<androidx.viewpager.widget.ViewPager
        android:id="@+id/main_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        android:layout_gravity="start"
        />
        <!--android:layout_marginTop="-20dp"
        android:layout_marginBottom="-20dp"/-->

<com.tbuonomo.viewpagerdotsindicator.WormDotsIndicator
        android:id="@+id/pager_indicator"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        app:dotsColor="@color/colorPrimaryDark"
        app:dotsStrokeColor="@color/colorPrimaryDark"
        app:dotsCornerRadius="8dp"
        app:dotsSize="16dp"
        app:dotsSpacing="4dp"
        app:progressMode="true"
        android:layout_marginTop="25dp"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

Теперь у меня есть фрагмент с оранжевым фоном.Я установил ширину и высоту в соответствии с родительским, а также fitSystemWindows, так же, как в основной деятельности, но он не подходит на 100% - строка состояния и нижняя строка не затрагиваются.

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/constraintLayout"
    android:background="@drawable/pantry_background"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

<TextView
        android:id="@+id/label"
        android:text="@string/fragment_pantry"
        app:layout_goneMarginTop="50dp"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        tools:layout_constraintTop_creator="1"
        android:layout_marginStart="@dimen/activity_horizontal_margin"
        android:layout_marginEnd="@dimen/activity_horizontal_margin"
        android:layout_marginTop="75dp"
        android:layout_marginBottom="@dimen/activity_vertical_margin"
        tools:layout_constraintLeft_creator="1"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="@+id/constraintLayout"/>
</androidx.constraintlayout.widget.ConstraintLayout>

Эффект виден на экране ниже,Я попробовал простой обходной путь с отрицательными полями, но боюсь, как он будет работать на других устройствах.

PS: у телефона есть метка ... сомневаюсь, что это как-то связано с ним.

screen

Ответы [ 2 ]

0 голосов
/ 18 февраля 2019

Добавьте эти строки кода в свой Activity перед setContentView (R.layout.activity_main);

requestWindowFeature (Window.FEATURE_NO_TITLE);getWindow (). setFlags (WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);setContentView (R.layout.activity_main);

0 голосов
/ 18 февраля 2019

попробуйте этот код

     <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
   >
    <android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >
    </android.support.v4.view.ViewPager>
        <LinearLayout
            android:id="@+id/SliderDots"
            android:orientation="horizontal"
            android:gravity="center"
            android:layout_marginBottom="20dp"
            android:layout_gravity="center_horizontal|bottom|center"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        </LinearLayout>


</FrameLayout>
...