调用Popup时发生is your activity running

在尝试使用Popup实现左下角悬浮框效果时遭遇isyouractivityrunning异常,多种解决方式无效。最终通过Dialog并设置其屏幕坐标成功实现需求。
部署运行你感兴趣的模型镜像

     应策划要求,做一个左下角悬浮框的效果,于是快马加鞭,写了个Popup,接关就遇到了下面这个诡异的异常。

     在调用Popup时,出现"is your activity running"异常,针对该异常信息的提示,认为是该Activity未启动,加上this.isFinishing方法,无用,判断可能出现Context被锁住,改写代码,无用,this、this.getParent(NullPrintException)、getApplicationContext通通试过,无用,猜想可能是Activity未加载完导致该问题,使用Thread.sleep(),无用,参考网友提示:Handler+Runnable,无用,奇怪的是,在某点击事件里,调用该Popup时,无问题,遇到这种奇怪的异常,真是束手无策,不得已,换成了Dialog,解决问题。

     之前之所以没有使用Dialog,是不知道Dialog可以设置在屏幕中的坐标位置,最后打算和策划说明问题时,抱着试一试的心态,上网查了Dialog设置坐标的事,原是可以的,相关代码附上:

 

	Window window = dialog.getWindow();
	WindowManager.LayoutParams lp = window.getAttributes();
	lp.x = x; //坐标点0,0为屏幕中心点
	lp.y = y;
	window.setAttributes(lp);

    关于Popup的那个异常,有哪位高手有解决方案,望能提示一二。

 

    续:调用Popup需要Activity完成全部生命周期之后,runnable+handler理论上是可以的,经过测试没用,说明在生命周期里使用线程刷新UI时,生命周期并没有执行完,响应按键事件必须在Activity生命周期(到onResume())结束后,这也就是为什么在点击事件里,可以调用Popup。

您可能感兴趣的与本文相关的镜像

Stable-Diffusion-3.5

Stable-Diffusion-3.5

图片生成
Stable-Diffusion

Stable Diffusion 3.5 (SD 3.5) 是由 Stability AI 推出的新一代文本到图像生成模型,相比 3.0 版本,它提升了图像质量、运行速度和硬件效率

10-16 17:11:22.870 24736 24736 D AndroidRuntime: Shutting down VM 10-16 17:11:22.871 24736 24736 E AndroidRuntime: FATAL EXCEPTION: main 10-16 17:11:22.871 24736 24736 E AndroidRuntime: Process: com.android.cts.verifier, PID: 24736 10-16 17:11:22.871 24736 24736 E AndroidRuntime: android.view.WindowManager$BadTokenException: Unable to add window -- token null is not valid; is your activity running? 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.view.ViewRootImpl.setView(ViewRootImpl.java:1736) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.view.WindowManagerGlobal.addView(WindowManagerGlobal.java:537) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:161) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at com.android.cts.verifier.MainActivity.registerTouchInterceptor(MainActivity.java:128) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at com.android.cts.verifier.MainActivity$1.onClick(MainActivity.java:53) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.view.View.performClick(View.java:8103) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.view.View.performClickInternal(View.java:8080) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.view.View.-$$Nest$mperformClickInternal(Unknown Source:0) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.view.View$PerformClick.run(View.java:31642) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:995) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:103) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.os.Looper.loopOnce(Looper.java:283) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.os.Looper.loop(Looper.java:392) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:9236) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:611) 10-16 17:11:22.871 24736 24736 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:944)
最新发布
10-17
/* * Copyright (C) 2010 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package android.widget; import android.annotation.MenuRes; import android.annotation.TestApi; import android.compat.annotation.UnsupportedAppUsage; import android.content.Context; import android.os.Build; import android.view.Gravity; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.View.OnTouchListener; import com.android.internal.R; import com.android.internal.view.menu.MenuBuilder; import com.android.internal.view.menu.MenuPopupHelper; import com.android.internal.view.menu.ShowableListMenu; /** * A PopupMenu displays a {@link Menu} in a modal popup window anchored to a * {@link View}. The popup will appear below the anchor view if there is room, * or above it if there is not. If the IME is visible the popup will not * overlap it until it is touched. Touching outside of the popup will dismiss * it. */ public class PopupMenu { @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) private final Context mContext; private final MenuBuilder mMenu; private final View mAnchor; @UnsupportedAppUsage private final MenuPopupHelper mPopup; private OnMenuItemClickListener mMenuItemClickListener; private OnDismissListener mOnDismissListener; private OnTouchListener mDragListener; /** * Constructor to create a new popup menu with an anchor view. * * @param context Context the popup menu is running in, through which it * can access the current theme, resources, etc. * @param anchor Anchor view for this popup. The popup will appear below * the anchor if there is room, or above it if there is not. */ public PopupMenu(Context context, View anchor) { this(context, anchor, Gravity.NO_GRAVITY); } /** * Constructor to create a new popup menu with an anchor view and alignment * gravity. * * @param context Context the popup menu is running in, through which it * can access the current theme, resources, etc. * @param anchor Anchor view for this popup. The popup will appear below * the anchor if there is room, or above it if there is not. * @param gravity The {@link Gravity} value for aligning the popup with its * anchor. */ public PopupMenu(Context context, View anchor, int gravity) { this(context, anchor, gravity, R.attr.popupMenuStyle, 0); } /** * Constructor a create a new popup menu with a specific style. * * @param context Context the popup menu is running in, through which it * can access the current theme, resources, etc. * @param anchor Anchor view for this popup. The popup will appear below * the anchor if there is room, or above it if there is not. * @param gravity The {@link Gravity} value for aligning the popup with its * anchor. * @param popupStyleAttr An attribute in the current theme that contains a * reference to a style resource that supplies default values for * the popup window. Can be 0 to not look for defaults. * @param popupStyleRes A resource identifier of a style resource that * supplies default values for the popup window, used only if * popupStyleAttr is 0 or can not be found in the theme. Can be 0 * to not look for defaults. */ public PopupMenu(Context context, View anchor, int gravity, int popupStyleAttr, int popupStyleRes) { mContext = context; mAnchor = anchor; mMenu = new MenuBuilder(context); mMenu.setCallback(new MenuBuilder.Callback() { @Override public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item) { if (mMenuItemClickListener != null) { return mMenuItemClickListener.onMenuItemClick(item); } return false; } @Override public void onMenuModeChange(MenuBuilder menu) { } }); mPopup = new MenuPopupHelper(context, mMenu, anchor, false, popupStyleAttr, popupStyleRes); mPopup.setGravity(gravity); mPopup.setOnDismissListener(new PopupWindow.OnDismissListener() { @Override public void onDismiss() { if (mOnDismissListener != null) { mOnDismissListener.onDismiss(PopupMenu.this); } } }); } /** * Sets the gravity used to align the popup window to its anchor view. * <p> * If the popup is showing, calling this method will take effect only * the next time the popup is shown. * * @param gravity the gravity used to align the popup window * @see #getGravity() */ public void setGravity(int gravity) { mPopup.setGravity(gravity); } /** * @return the gravity used to align the popup window to its anchor view * @see #setGravity(int) */ public int getGravity() { return mPopup.getGravity(); } /** * Returns an {@link OnTouchListener} that can be added to the anchor view * to implement drag-to-open behavior. * <p> * When the listener is set on a view, touching that view and dragging * outside of its bounds will open the popup window. Lifting will select * the currently touched list item. * <p> * Example usage: * <pre> * PopupMenu myPopup = new PopupMenu(context, myAnchor); * myAnchor.setOnTouchListener(myPopup.getDragToOpenListener()); * </pre> * * @return a touch listener that controls drag-to-open behavior */ public OnTouchListener getDragToOpenListener() { if (mDragListener == null) { mDragListener = new ForwardingListener(mAnchor) { @Override protected boolean onForwardingStarted() { show(); return true; } @Override protected boolean onForwardingStopped() { dismiss(); return true; } @Override public ShowableListMenu getPopup() { // This will be null until show() is called. return mPopup.getPopup(); } }; } return mDragListener; } /** * Returns the {@link Menu} associated with this popup. Populate the * returned Menu with items before calling {@link #show()}. * * @return the {@link Menu} associated with this popup * @see #show() * @see #getMenuInflater() */ public Menu getMenu() { return mMenu; } /** * @return a {@link MenuInflater} that can be used to inflate menu items * from XML into the menu returned by {@link #getMenu()} * @see #getMenu() */ public MenuInflater getMenuInflater() { return new MenuInflater(mContext); } /** * Inflate a menu resource into this PopupMenu. This is equivalent to * calling {@code popupMenu.getMenuInflater().inflate(menuRes, popupMenu.getMenu())}. * * @param menuRes Menu resource to inflate */ public void inflate(@MenuRes int menuRes) { getMenuInflater().inflate(menuRes, mMenu); } /** * Show the menu popup anchored to the view specified during construction. * * @see #dismiss() */ public void show() { mPopup.show(); } /** * Dismiss the menu popup. * * @see #show() */ public void dismiss() { mPopup.dismiss(); } /** * Sets a listener that will be notified when the user selects an item from * the menu. * * @param listener the listener to notify */ public void setOnMenuItemClickListener(OnMenuItemClickListener listener) { mMenuItemClickListener = listener; } /** * Sets a listener that will be notified when this menu is dismissed. * * @param listener the listener to notify */ public void setOnDismissListener(OnDismissListener listener) { mOnDismissListener = listener; } /** * Sets whether the popup menu's adapter is forced to show icons in the * menu item views. * <p> * Changes take effect on the next call to show(). * * @param forceShowIcon {@code true} to force icons to be shown, or * {@code false} for icons to be optionally shown */ public void setForceShowIcon(boolean forceShowIcon) { mPopup.setForceShowIcon(forceShowIcon); } /** * Interface responsible for receiving menu item click events if the items * themselves do not have individual item click listeners. */ public interface OnMenuItemClickListener { /** * This method will be invoked when a menu item is clicked if the item * itself did not already handle the event. * * @param item the menu item that was clicked * @return {@code true} if the event was handled, {@code false} * otherwise */ boolean onMenuItemClick(MenuItem item); } /** * Callback interface used to notify the application that the menu has closed. */ public interface OnDismissListener { /** * Called when the associated menu has been dismissed. * * @param menu the popup menu that was dismissed */ void onDismiss(PopupMenu menu); } /** * Returns the {@link ListView} representing the list of menu items in the currently showing * menu. * * @return The view representing the list of menu items. * @hide */ @TestApi public ListView getMenuListView() { if (!mPopup.isShowing()) { return null; } return mPopup.getPopup().getListView(); } }
06-08
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值