从小部件启动设置/市场

发布于 2024-11-27 02:36:11 字数 355 浏览 3 评论 0原文

我将如何从小部件启动“设置”菜单/“市场”。我尝试过使用代码并使用设置/市场包名称,但它们都无法打开。这是我正在使用的代码:

String packageName = "com.package";
String className = "com.package.MainActivity";
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName(packageName, className));
startActivity(intent);

另外,我正在测试的手机运行 HTC Sense,如果这很重要的话。

How would I go about launching the Settings menu/the Market from a widget. Ive tried using a code and using the Settings/Market package name, but neither of them will open. Heres the code I'm using:

String packageName = "com.package";
String className = "com.package.MainActivity";
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setComponent(new ComponentName(packageName, className));
startActivity(intent);

Also, the phone I'm testing on runs HTC Sense, if that matters.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺ぐ爱和你が 2024-12-04 02:36:11

我不知道如何启动市场应用程序(我什至不确定是否可能),但要启动设置活动,请尝试...

Intent i = new Intent(Settings.ACTION_SETTINGS);
startActivity(i);

您将需要以下导入...

import android.provider.Settings;

I have no idea how to start the Market app (I'm not even sure if it's possible) but to launch the Settings Activity, try...

Intent i = new Intent(Settings.ACTION_SETTINGS);
startActivity(i);

You'll need the following import...

import android.provider.Settings;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文