FAQ

Android アプリから WebAppRuntime を起動する方法

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);

インテントのパラメータで指定されたHTML5アプリが起動されます。