- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我希望我的应用在每次打开时都显示登录屏幕。使用 android:clearTaskOnLaunch="true"
一切正常。但是有一个错误,只有在手机关机并且应用程序首先使用小部件启动时才会发生。
Intent intent = new Intent(context, StartActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
[....]
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_onebyone)
views.setOnClickPendingIntent(R.id.widget, pendingIntent);
此代码应启动我的主要 Activity 。一开始是做的。但是用 HOME 结束应用程序并用小部件重新启动它会导致我的应用程序不从我的 startactivity 开始,而是从我的应用程序的另一个 Activity 开始,而不显示登录屏幕。我能做些什么来解决它。我试过了
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);
但它不起作用。我想要的只是像 startActivity(..)
中那样(重新)启动 StartActivity-Intent,但我发现没有选项可以为我的 Widget 提供一个启动“正常” Activity 的 OnClickListener。
最好的问候,
直到
最佳答案
您是否尝试过将 Flag 添加到 Intent 中:
Intent intent = new Intent(context, StartActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
[....]
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_onebyone)
views.setOnClickPendingIntent(R.id.widget, pendingIntent);
Intent API
关于安卓 AppWidget + 安卓 :clearTaskOnLaunch ="true",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5781466/
阅读Android documentation这里的一些答案使 clearTaskOnLaunch 应该如何工作变得模棱两可。具体 1) 如何识别根 Activity ?它只是带有 DEFAULT、L
我的应用程序需要这种行为,“用户每次尝试启动它时都必须登录(直接触摸应用程序图标,或通过任务管理器或通过最近的应用程序)”所以 Activity 是按这个顺序的(认为应用程序名称是 Foo 应用程序)
我希望我的应用在每次打开时都显示登录屏幕。使用 android:clearTaskOnLaunch="true" 一切正常。但是有一个错误,只有在手机关机并且应用程序首先使用小部件启动时才会发生。 I
根据文档: android:clearTaskOnLaunch Whether or not all activities will be removed from the task, except
我是一名优秀的程序员,十分优秀!