Макет активности, переходящий за статусбар при обновлении из фрагмента - PullRequest
0 голосов
/ 10 сентября 2018

Задача

У меня есть действие, в котором мой пользователь может редактировать различные значения для объекта. Я создал BottomSheetDialogFragment, где пользователь может изменять некоторые значения времени для указанной сущности.

Когда пользователь меняет значение (здесь время), я хочу изменить значение, отображаемое в фоновом режиме. Тем не менее, когда я обновляю свой вид активности, вся активность переходит за строку состояния, например this (я знаю, что есть несоответствие между выбранным числом и показанным числом, это вещь с часовым поясом, которую я еще не исправил ).

код

Я открываю BottomSheetDialigFragment с помощью:

TimePickerDialogFrag.newInstance(shift!!, type).run {
        window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)
        show(supportFragmentManager, "timepicker_modal")
    }

BottomSheetDialogFragment взаимодействует с действием через интерфейс OnTimeChangedListener следующим образом:

override fun onAttach(context: Context) {
    super.onAttach(context)
    if (context is OnTimeChangedListener) {
        listener = context
    } else {
        throw RuntimeException(context.toString() + " must implement OnTimeChangedListener")
    }
}

override fun onDetach() {
    super.onDetach()
    listener = null
}

interface OnTimeChangedListener {
    fun onTimeChanged(shift: ShiftEntity)
}

Метод onTimeChanged вызывается, когда пользователь запускает виджет TimePicker.

Способ реализован в деятельности как:

override fun onTimeChanged(shift: ShiftEntity) {
    this.shift = shift
    startTimeTextView?.text = TimeFormatter.formatTime(shift.startTime, "HH:mm")
    endTimeTextView?.text = TimeFormatter.formatTime(shift.endTime, "HH:mm")
}

Полагаю, решение находится где-то в файле макета Activitys, который выглядит следующим образом:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:focusableInTouchMode="true"
    tools:context=".activities.myshifts.ShiftActivity">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appBarLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            style="@style/myNavDrawer"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            android:background="@color/primaryBg"
            android:contentInsetEnd="0dp"
            android:contentInsetLeft="0dp"
            android:contentInsetRight="0dp"
            android:contentInsetStart="0dp"
            app:contentInsetEnd="0dp"
            app:contentInsetEndWithActions="0dp"
            app:contentInsetLeft="0dp"
            app:contentInsetRight="0dp"
            app:contentInsetStart="0dp"
            app:contentInsetStartWithNavigation="0dp"
            app:popupTheme="@style/AppTheme"
            app:theme="@style/ToolbarColoredBackArrow">

            <android.support.constraint.ConstraintLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                //Content of custom AppBar goes here. Removed for an easier overview


            </android.support.constraint.ConstraintLayout>


        </android.support.v7.widget.Toolbar>

    </android.support.design.widget.AppBarLayout>

//Actual content of activity goes here. Removed it for an easier 
overview, will add if needed.

</android.support.constraint.ConstraintLayout>

Уже пробовал

Я уже пытался использовать атрибут android: fitsSystemWindows = "true" - добавить его как в родительское представление, так и в AppBarLayout.

Добавление его в родительский макет создает заполнение внутри панели приложений, как только открывается фрагмент, как показано в верхней части здесь

Добавление атрибута в AppBarLayout не имеет значения.

Ответы [ 2 ]

0 голосов
/ 19 сентября 2018

Я нашел решение.Я не осознавал, как способ, которым я раздувал BottomSheetDialogFragment, будет иметь эффект, и поэтому я изначально не включил этот код в вопрос.

Однако удаление window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS) из фрагмента помогло.

0 голосов
/ 19 сентября 2018

Попробуйте добавить этот атрибут:

android:fitsSystemWindows="true"

В BottomSheetDialogFragment корне xml, который вы надули, или в вашем FrameLayout, содержащем ваш Fragment.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...