从Fragment

时间:2018-09-10 00:02:03

标签: android kotlin android-dialogfragment

问题

我有一个活动,我的用户可以为一个实体编辑不同的值。我创建了一个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)
}

当用户旋转TimePicker小部件时,将调用onTimeChanged方法。

该方法在活动中的实现方式为:

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

我猜想解决方案在“活动”布局文件中的某个位置,如下所示:

<?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中。

将其添加到父级布局后,只要打开片段,便会在AppBar内创建一个填充,如顶部here

所示

将属性添加到AppBarLayout并没有什么不同。

2 个答案:

答案 0 :(得分:1)

我找到了解决方案。我没有意识到我给BottomSheetDialogFragment膨胀的方式会产生效果,因此我最初没有在问题中包含该代码。

但是从片段中删除window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS)可以解决问题。

答案 1 :(得分:0)

尝试添加此属性:

android:fitsSystemWindows="true"

在您膨胀的xml的BottomSheetDialogFragment根目录中或包含FrameLayout的{​​{1}}中。