Hi I am facing problem in displaying a webview on my native app.
I dragged the control on native Ui builder and then accessed it inside AppMainForm::OnInitializing function.
and did following
Tizen::Web::Controls::Web* __pWeb = static_cast<Web*>(GetControl(L"IDC_WEB1"));
if(__pWeb != null)
{
__pWeb->LoadUrl(L"file:///opt/usr/apps/1kPHWWOm9D/res/indexone.html");
}
1kPHWWOm9D is the id I took from manifest file.
What must be going wrong.