软键盘未隐藏在碎片中。如何隐藏键盘?

时间:2019-10-10 18:45:44

标签: android fragment android-softkeyboard

我已经使用片段创建了BottomSheet。我的片段包含EditText。当EditText处于焦点状态时,键盘会自动打开,但是当焦点不在焦点时,它不会自动关闭/隐藏。当我在BottomSheet片段之外单击时,我想隐藏/关闭键盘,如何找出它?

这是我的片段类

public class ListItemInputFragment extends BottomSheetDialogFragment {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        final EditText newTaskEt, detailsEt;
        final TextView savBtn;

        View view = inflater.inflate(R.layout.fragment_list_item_input, container, false);

        newTaskEt = view.findViewById(R.id.new_task_et_id);
        detailsEt = view.findViewById(R.id.details_et_id);
        savBtn = view.findViewById(R.id.save_btn_id);

        InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.toggleSoftInput(InputMethodManager.SHOW_FORCED,0);

        imm.hideSoftInputFromWindow(newTaskEt.getWindowToken(), 0);


        saveButtonClick(savBtn);

        return view;
    }


    private void saveButtonClick(View view) {
        view.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Toast.makeText(getActivity().getBaseContext(), "Data Saved.", Toast.LENGTH_SHORT).show();
            }
        });
    }

}

1 个答案:

答案 0 :(得分:0)

最后我想出了上述问题的解决方案 这是通过我的解决方案执行我进一步搜索的其他事情的方式的简便方法。

我只是在res / values / styles.xml文件中创建样式

    <style name="DialogStyle" parent="Theme.Design.Light.BottomSheetDialog">
        <item name="android:windowIsFloating">false</item>
        <item name="android:windowSoftInputMode">adjustResize</item>
    </style>

然后在片段类中放入以下代码

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setStyle(DialogFragment.STYLE_NORMAL, R.style.DialogStyle);
    }