【发布时间】:2014-12-29 13:13:16
【问题描述】:
我正在使用这个库在我的应用程序上使用表情符号键盘。 https://github.com/ankushsachdeva/emojicon
自述文件指出,必须使用活动布局层次结构的最顶层视图来初始化弹出窗口。
我的应用是通过片段实现的。
这是我用于测试的代码:
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.overview1_layout, container,
false);
// Give the topmost view of your activity layout hierarchy. This will be used to measure soft keyboard height
EmojiconsPopup popup = new EmojiconsPopup(view, getActivity());
//Will automatically set size according to the soft keyboard size
popup.setSizeForSoftKeyboard();
popup.showAtBottom();
return view;
}
如果我运行此代码,我会在 logcat 中收到以下错误:
11-02 22:37:16.685: E/AndroidRuntime(30363): java.lang.RuntimeException: Unable to resume activity {com.Testing.full/com.Testing.full.MainActivity}: android.view.WindowManager$BadTokenException: Unable to add window -- token null is not valid; is your activity running?
编辑:我正在使用 SherlockFragment
【问题讨论】:
-
getActivity().getWindow().getDecorView().getRootView();