重新定位setCanceledOnTouchOutside的DialogFragment命中区域具有意外的边距

时间:2018-11-27 12:04:04

标签: android android-layout kotlin dialog dialogfragment

我正在使用一个对话框作为过滤器选项。平板电脑的设计涉及显示在图像按钮下方的对话框,该对话框显示出来。我感到用户期望他们可以再次单击该按钮以隐藏对话框。我看到的问题是,对话框片段周围似乎有空白,无法通过取消对话框来响应灰色区域中的单击。

这是当前的样子。

Positioning of dialog

这看起来像设计。单击以关闭该对话框,该对话框将在过滤器图标的三行顶部(右上角)起作用,而在后两行都不起作用。

这是我用于对话框的样式。

<style name="SortDialogTheme" parent="Theme.AppCompat.Light.Dialog">
    <item name="android:windowNoTitle">false</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowFullscreen">false</item>
    <item name="android:windowIsFloating">false</item>
    <item name="android:background">@android:color/white</item>
</style>

以及调用对话框片段以显示的代码(来自Fragment)。

override fun showSortDialog(yPositionToDrawDialog: Int) {
    activity?.supportFragmentManager?.let { supportFragmentManager ->
        val fragmentTransaction = supportFragmentManager.beginTransaction()
        val prev = supportFragmentManager.findFragmentByTag(SortBelowButtonDialogFragment.TAG)
        if (prev != null) {
            fragmentTransaction.remove(prev)
        }
        fragmentTransaction.addToBackStack(null)
        val sortDialog = SortBelowButtonDialogFragment.newInstance(yPositionToDrawDialog)
        if (!supportFragmentManager.isStateSaved && !sortDialog.isAdded) {
            sortDialog.setStyle(DialogFragment.STYLE_NO_FRAME, R.style.SortDialogTheme)
            sortDialog.show(fragmentTransaction, SortBelowButtonDialogFragment.TAG)
        }
    }
}

这里是重新放置对话框的逻辑(来自DialogFragment)。

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
    moveDialogToExtrasY()
    return inflater.inflate(R.layout.sort_view, container, false)
}

private fun moveDialogToExtrasY() {
    val window = dialog.window
    window.setGravity(Gravity.TOP or Gravity.END)
    window.setLayout(WindowManager.LayoutParams.WRAP_CONTENT, WindowManager.LayoutParams.WRAP_CONTENT)

    val windowLayoutParams = window.attributes
    windowLayoutParams.y = arguments?.getInt(Y_POSITION_OF_DIALOG, DEFAULT_Y_POSITION) ?: DEFAULT_Y_POSITION
    windowLayoutParams.x = context?.resources?.getDimension(R.dimen.sort_view_margin)?.toInt() ?: DEFAULT_PADDING
    windowLayoutParams.width = context?.resources?.getDimension(R.dimen.sort_view_tablet_min_width)?.toInt()
            ?: DEFAULT_WIDTH

    window.attributes = windowLayoutParams
}

这是对话框片段的布局的简化版本,具有相同的问题。

<?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"
                                             android:id="@+id/sort_dialog"
                                             android:layout_width="wrap_content"
                                             android:layout_height="wrap_content"
                                             android:clickable="true"
                                             android:focusable="true"
                                             android:minWidth="300dp">

    <TextView
            android:id="@+id/filter_header"
            android:text="Filter"
            android:padding="20dp"
            android:layout_height="wrap_content"
            android:layout_width="0dp"
            app:layout_constraintBottom_toTopOf="@+id/filter_option"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_chainStyle="packed"/>

    <TextView
            android:id="@+id/filter_option"
            android:text="Option"
            android:padding="20dp"
            android:layout_height="wrap_content"
            android:layout_width="0dp"
            app:layout_constraintTop_toBottomOf="@+id/filter_header"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintVertical_chainStyle="packed"/>

</android.support.constraint.ConstraintLayout>

我将android:windowIsFloating更改为true,然后看起来像这样,它离按钮的距离比设计指定的距离还远。但是,单击过滤器图标上的任意位置将取消该对话框。

Repositioned with windowIsFloating true

是否可以在DialogFragment上指定点击区域的大小?

1 个答案:

答案 0 :(得分:0)

转换为PopupWindow提供了可接受的解决方案。

TABLE_PER_CLASS