我为同样的问题查了几个帖子,但似乎无法解决我的问题。我在整个应用程序中都使用过微调器,它们工作正常。当我尝试在弹出窗口中使用微调器时,我在选择它时会出错。弹出窗口是添加引用,我已经声明了一个全局ViewGroup变量(即vg_references),可用于检索弹出窗口中的组件。弹出窗口的代码如下。
LayoutInflater inflater = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
vg_references = (ViewGroup)inflater.inflate(R.layout.reference, null, false);
pw_references = new PopupWindow(vg_references,
this.getWindowManager().getDefaultDisplay().getWidth()/100 * 75,
this.getWindowManager().getDefaultDisplay().getHeight()/100 * 50,
true);
pw_references.setFocusable(true);
pw_references.showAtLocation((View)view.getParent(), Gravity.CENTER, 0, 0);
this.populateReferenceView();
然后调用一个函数来填充弹出窗口中的组件(例如文本字段,微调器,布局等......)。此函数的一部分是使用数据库中的字符串列表填充微调器。
// Find the spinner
Spinner spinReferenceSourceTypes = (Spinner) vg_references.findViewById(R.id.spin_referencesSourceTypes);
// Retrieve the list of reference source types and create an array adapter to attach to the list
ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(
this, android.R.layout.simple_spinner_item, databaseHelper.getReferenceSourceTypes());
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinReferenceSourceTypes.setAdapter(dataAdapter);
// If there's only 1 item in the dropdown list, disable the dropdown list
if(spinReferenceSourceTypes.getCount() < 2) {
spinReferenceSourceTypes.setEnabled(false);
}
else {
spinReferenceSourceTypes.setEnabled(true);
}
当我单击此微调器时,程序崩溃并出现以下错误。任何人都可以帮我解决这个问题。谢谢大家
12-04 18:43:41.507: E/AndroidRuntime(30504): FATAL EXCEPTION: main
12-04 18:43:41.507: E/AndroidRuntime(30504): android.view.WindowManager$BadTokenException: Unable to add window -- token android.view.ViewRootImpl$W@414c67c8 is not valid; is your activity running?
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.view.ViewRootImpl.setView(ViewRootImpl.java:520)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:313)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:215)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.view.WindowManagerImpl$CompatModeWrapper.addView(WindowManagerImpl.java:140)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.view.Window$LocalWindowManager.addView(Window.java:537)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.widget.PopupWindow.invokePopup(PopupWindow.java:992)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.widget.PopupWindow.showAsDropDown(PopupWindow.java:901)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.widget.ListPopupWindow.show(ListPopupWindow.java:595)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.widget.Spinner$DropdownPopup.show(Spinner.java:764)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.widget.Spinner.performClick(Spinner.java:457)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.view.View$PerformClick.run(View.java:14152)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.os.Handler.handleCallback(Handler.java:605)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.os.Handler.dispatchMessage(Handler.java:92)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.os.Looper.loop(Looper.java:137)
12-04 18:43:41.507: E/AndroidRuntime(30504): at android.app.ActivityThread.main(ActivityThread.java:4514)
12-04 18:43:41.507: E/AndroidRuntime(30504): at java.lang.reflect.Method.invokeNative(Native Method)
12-04 18:43:41.507: E/AndroidRuntime(30504): at java.lang.reflect.Method.invoke(Method.java:511)
12-04 18:43:41.507: E/AndroidRuntime(30504): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:790)
12-04 18:43:41.507: E/AndroidRuntime(30504): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:557)
12-04 18:43:41.507: E/AndroidRuntime(30504): at dalvik.system.NativeStart.main(Native Method)
答案 0 :(得分:13)
我的工作中遇到了这个问题,并且浪费了大约两天的时间来寻找解决方案。但是,我没有从网上找到解决方案。
解决方案是将Spinner
模式指定为dialog
。
:
android:spinnerMode="dialog"
或来自java代码:
Spinner(Context context, int mode)
我希望我的回答很有帮助
答案 1 :(得分:1)
我能让它工作的唯一方法是使用Dialog而不是PopupWindow。它的工作方式很好
答案 2 :(得分:0)
您可以尝试更换以下行:
pw_references = new PopupWindow(vg_references,
this.getWindowManager().getDefaultDisplay().getWidth()/100 * 75,
this.getWindowManager().getDefaultDisplay().getHeight()/100 * 50,
true);
与
pw_references = new PopupWindow(this);
pw_references.setWidth(this.getWindowManager().getDefaultDisplay().getWidth()/100 * 75);
pw_references.setHeight(this.getWindowManager().getDefaultDisplay().getHeight()/100 * 50);
pw_references.setContentView(vg_references);
其中this
引用当前的activity
引用。只是为了看看这是否有所不同......
答案 3 :(得分:0)
以下是如何调用弹出代码。我已经为PopupWindow和ViewGroup声明了变量,因此它可以在整个类中使用
private PopupWindow pw_references;
private vg_references;
调用PopupWindow的代码在按钮的事件处理程序中调用。
public void ibtn_references_Click(View view) {
...
// 1st section of code in the original post
}
此按钮位于linearlayout(单独的布局文件)内,然后包含在当前屏幕的framelayout中。包括如下内容。
<FrameLayout
android:id="@+id/lay_rowButtons"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/backgroud_border"
android:padding="10dp" >
<include android:id="@+id/buttons" layout="@layout/buttons" />
</FrameLayout>