我有一个FragmentActivity
使用AViewPager
服务几个片段。每个都是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>
开始活动时,将显示软键盘。为了解决这个问题,我在片段中做了以下操作:
@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);
}
我将传入的ViewGroup container
参数保存onCreateView
为一种访问主要活动的窗口令牌的方式。这样可以正常运行,但是不会打扰hideSoftInputFromWindow
in的键盘onStart
。
最初,我尝试使用膨胀布局代替container
,即:
imm.hideSoftInputFromWindow(myInflatedLayout.getWindowToken(), 0);
但这引发了NullPointerException
,大概是因为片段本身不是活动,并且没有唯一的窗口令牌吗?
是否可以从片段中隐藏软键盘,还是应该在中创建一个方法FragmentActivity
并从片段中调用它?