DialogFragment没有为> = API 24上的软键盘调整大小

时间:2017-07-12 16:09:48

标签: android android-softkeyboard android-dialogfragment dialogfragment

我一直在谷歌搜索和搜索Stack Overflow 2天,但是没有找到可以帮助我的东西。

我试图在智能手机上实现全屏幕的DialogFragment,以及平板电脑上的模态对话框。

这是它的外观(采用API级别23设备):

How it's supposed to look

这是API级别24设备的外观:

How it's looking

这适用于API级别< = 23的设备上的以下代码 我在多个真实和模拟设备上测试过它。

TestDialogFragment.java:

public class TestDialogFragment extends DialogFragment
{
    private boolean isTablet;

    public TestDialogFragment()
    {
    }

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);

        isTablet = getResources().getBoolean(R.bool.isTablet); // defaults to false, true >= sw600dp
        if (isTablet)
        {
            setStyle(DialogFragment.STYLE_NO_TITLE, android.R.style.Theme_Holo_Light_Dialog_NoActionBar_MinWidth);
        } else
        {
            setStyle(STYLE_NO_FRAME, android.R.style.Theme_Holo_Light);
        }
        setCancelable(false);
    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle
        savedInstanceState)
    {
        if (!isTablet)
        {
            Window window = getDialog().getWindow();
            if (window != null)
            {
                window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
            }
        }

        return inflater.inflate(R.layout.dialog_fragment, container, false);
    }

    @Override
    public void onStart()
    {
        super.onStart();
        if (isTablet)
        {
            Dialog d = getDialog();
            if (d != null)
            {
                int width = ViewGroup.LayoutParams.WRAP_CONTENT;
                int height = ViewGroup.LayoutParams.MATCH_PARENT;
                d.getWindow().setLayout(width, height);
            }
        }
    }
}

dialog_fragment.xml:

<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.support.v7.widget.Toolbar
        android:id="@+id/dialog_toolbar"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="@color/colorPrimary"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginRight="8dp"
            android:ellipsize="end"
            android:fontFamily="sans-serif-medium"
            android:maxLines="2"
            android:paddingBottom="14dp"
            android:paddingTop="14dp"
            android:text="@string/dialog_title"
            android:textSize="20sp" />

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

    <EditText
        android:id="@+id/edit_text"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="4dp"
        android:ems="10"
        android:hint="@string/edit_text_1"
        android:inputType="text"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toLeftOf="@+id/progress_bar"
        app:layout_constraintTop_toBottomOf="@+id/dialog_toolbar"
        app:theme="@style/AppTheme" />

    <ProgressBar
        android:id="@+id/progress_bar"
        style="?android:progressBarStyle"
        android:layout_width="24dp"
        android:layout_height="0dp"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="4dp"
        android:visibility="invisible"
        app:layout_constraintBottom_toBottomOf="@id/edit_text"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintLeft_toRightOf="@id/edit_text"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="@id/edit_text"
        app:layout_constraintWidth_default="wrap"
        tools:visibility="visible" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/results_recycler_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/edit_text"/>

    <TextView
        android:id="@+id/no_results_text_view"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginTop="32dp"
        android:gravity="center"
        android:text="@string/no_results"
        android:visibility="gone"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@id/edit_text"
        app:layout_constraintVertical_bias="0.0"
        app:layout_constraintHeight_default="wrap"
        tools:visibility="visible" />
</android.support.constraint.ConstraintLayout>

我无法弄清楚为什么它在API级别24及以上也不起作用。我发现在Android 24的发行说明中没有对此行为进行任何更改。

我的代码有什么问题或我忽略了什么吗?

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

我设法通过从Mike Penz的this扩展MaterialDrawer library类来至少使对话框的内容始终可见。这不是最漂亮的解决方案,但至少对话框中的所有内容都可以与键盘打开进行交互。

以下是代码:

lsb