从小部件启动设置/市场
我将如何从小部件启动“设置”菜单/“市场”。我尝试过使用代码并使用设置/市场包名称,但它们都无法打开。这是我正在使用的代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道如何启动市场应用程序(我什至不确定是否可能),但要启动设置活动,请尝试...
您将需要以下导入...
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...
You'll need the following import...