模拟器 - 如何添加网络浏览器和 Samsung Apps?

发布于 2024-11-08 07:34:16 字数 111 浏览 3 评论 0原文

我刚刚安装了Bada模拟器,它只有设置。有什么方法可以添加网络浏览器和 Samsung Apps 图标门户。我想在此模拟器上测试一些当前的应用程序。

感谢您的回复

Hmyzak

I have just installed Bada emulator and it has only settings. Is there any how how to add there web browser and Samsung Apps icon portal. I would like to test some current apps on this emulator.

Thanks for reply

Hmyzak

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

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

发布评论

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

评论(1

小情绪 2024-11-15 07:34:16

对于网络浏览器,您可以使用一个技巧:
编写一个启动它的应用程序。代码基本上是

ArrayList* pDataList = null;
pDataList = new ArrayList();
pDataList->Construct();

String* pData = null;
pData = new String(L"http://www.someurl.com");
pDataList->Add(*pData);
AppControl* pAc = AppManager::FindAppControlN(APPCONTROL_BROWSER, "");
pAc->Start(pDataList, null);

在模拟器中启动浏览器。我认为 AppStore 不可能做到这一点。

As for the web browser, there's a trick you can do:
Write an app which starts it. The code basically would be

ArrayList* pDataList = null;
pDataList = new ArrayList();
pDataList->Construct();

String* pData = null;
pData = new String(L"http://www.someurl.com");
pDataList->Add(*pData);
AppControl* pAc = AppManager::FindAppControlN(APPCONTROL_BROWSER, "");
pAc->Start(pDataList, null);

That starts a browser in Emulator. I don't think that's possible for the AppStore.

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