有没有可能从android模拟器(honey Comb)调用facebook

发布于 2024-12-21 23:41:39 字数 101 浏览 1 评论 0原文

是否有可能调用 facebook &来自andriod模拟器的twitter应用程序(我使用android模拟器3.2honeycomb)

请帮我解决这个问题???

Is there any possibility to invoke facebook & twitter app from andriod emulator( im using android emulator 3.2honey comb)

Please help me on this???

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

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

发布评论

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

评论(1

请恋爱 2024-12-28 23:41:39

这目前是有效的,尽管当 Facebook 应用程序更新时你无法押注它。

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.facebook.katana", "com.facebook.katana.ProfileTabHostActivity");
intent.putExtra("extra_user_id", user_id);
this.startActivity(intent);

您可能希望将其放在 try-catch(NullPointerException e) 块中,以免应用程序不再工作时崩溃。

This currently works, although you can't bet on it when the facebook app updates.

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.facebook.katana", "com.facebook.katana.ProfileTabHostActivity");
intent.putExtra("extra_user_id", user_id);
this.startActivity(intent);

You may want to place this in a try-catch(NullPointerException e) block so as not to crash the app when it doesn't work anymore.

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