FAQ

如何从Android应用程序中启动WebApp运行时间

要从Android应用程序在B2B自定义浏览器上启动HTML5应用程序。

如下举例说明

Intent intent = new Intent();
intent.setClassName("com.sony.dtv.browser.webappruntime","com.sony.dtv.browser.webappruntime.WebAppRuntimeActivity");
intent.putExtra("uri","http://examle.com/path/to/your/webapp");
startActivity(intent);

启动intent参数指定的HTML5 app。