gpt4 book ai didi

java - 如何将软键盘隐藏在 fragment 中?

转载 作者:IT老高 更新时间:2023-10-28 11:45:06 27 4
gpt4 key购买 nike

我有一个 FragmentActivity 使用 ViewPager 来提供多个 fragment 。每个都是具有以下布局的 ListFragment:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="8dp">
<ListView android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />

<EditText android:id="@+id/entertext"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>

启动 Activity 时,软键盘显示。为了解决这个问题,我在 fragment 中执行了以下操作:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
//Save the container view so we can access the window token
viewContainer = container;
//get the input method manager service
imm = (InputMethodManager)getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
. . .
}

@Override
public void onStart() {
super.onStart();

//Hide the soft keyboard
imm.hideSoftInputFromWindow(viewContainer.getWindowToken(), 0);
}

我将 onCreateView 传入的 ViewGroup container 参数保存为访问主要 Activity 的窗口 token 的一种方式。这运行没有错误,但在 onStart 中对 hideSoftInputFromWindow 的调用不会隐藏键盘。

最初,我尝试使用膨胀布局而不是 container,即:

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

但这抛出了 NullPointerException,大概是因为 fragment 本身不是 Activity 并且没有唯一的窗口 token ?

有没有办法在 fragment 中隐藏软键盘,或者我应该在 FragmentActivity 中创建一个方法并从 fragment 中调用它?

最佳答案

只要您的 Fragment 创建了一个 View ,您就可以在附加 View 之后使用该 View 中的 IBinder(窗口 token )。例如,您可以在 Fragment 中覆盖 onActivityCreated:

@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
final InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(getView().getWindowToken(), 0);
}

关于java - 如何将软键盘隐藏在 fragment 中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7940765/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com