Languages

Menu
Sites
Language
Trouble with tizen web browser

I use this example to open tizen web browser 

HashMap extraData;
extraData.Construct();
String urlKey = L"url";
String urlVal = L"http://www.tizen.org";
extraData.Add(&urlKey, &urlVal);

AppControl* pAc = AppManager::FindAppControlN(L"tizen.internet",
L"http://www.tizen.org/about");
if (pAc)
{
pAc->Start(null, null, &extraData, null);
delete pAc;
}

 

But my emulator only open web browser and not doing anything with it (like you see in my image)

 

I added 

<Privilege>http://tizen.org/privilege/application.launch</Privilege>

 

How can i make web browser open a webpage from my app :(

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

1 Replies
kavish
To display Web pages in your application check below link where the device's Web browser used. https://developer.tizen.org/help/topic/org.tizen.native.appprogramming/html/guide/app/appcontrol_browser.htm?resultof=%22%70%41%63%22%20%22%70%61%63%22%20 You may check Tizen Native sample application WebViewer.