开发者

Emulator - how to add web browser and Samsung Apps?

I have just installed Bada emulator a开发者_开发知识库nd 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


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜