在不知道应用程序名称的情况下启动当前应用程序的 MAIN 活动
我正在尝试编写一个实用程序方法,该方法能够启动标记为“android.intent.action.MAIN”的活动(属于当前应用程序)。实用程序方法不应接受任何参数。
所需的代码:
public void startMainActivity(Context context) {
...
}
清单:
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
有什么想法吗?
I am trying to write an utility method, that would be able to start activity (belonging to current application) marked as "android.intent.action.MAIN". The utility method should not accept any parameters.
Desired code:
public void startMainActivity(Context context) {
...
}
Manifest:
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从 API 级别 3 (Android 1.5) 开始,此功能有效:
This works since API Level 3 (Android 1.5):
我们使用了 alex2k8 这个很好的解决方案一段时间,直到发现它不能在所有设备上运行,并且从 Google Play 下载的发布版本。
不幸的是系统没有:
我们使用以下解决方法来解决它:
We used the nice solution of alex2k8 for a while until discovering it was not working on all devices on released version downloaded from Google Play.
Unfortunately the system didn't:
We used following workaround to solve it:
我认为您必须找到清单中声明的所有活动的列表,然后使用intentFilter的
actionsIterator()
迭代每个活动的意图过滤器的所有操作,匹配具有intent.action.MAIN
然后启动该 Activity。问题是我不确定如何从清单中检索所有声明的活动的列表。
I think you'd have to find a list of all the activities declared in your manifest, and then use the intentFilter's
actionsIterator()
to iterate through all the actions of each activity's intent-filter, match the one that hasintent.action.MAIN
and then start that Activity.The problem is I'm not sure how to retrieve a list of all your declared Activites from the manifest.