我有 android 测试应用程序,我试图用我的 JavacriptInterface 类调用一个函数。这个 webview 播放一个视频,当它结束时它调用一个 JS 方法,该方法应该调用 android 方法来启动一个新的活动。
这似乎根本没有发生,当视频完成时,就像 webview 重新加载并再次播放视频一样。
是否可以发起这样的活动?我可以在大约 45 分钟内提供示例代码。
VideoActivity.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().requestFeature(Window.FEATURE_ACTION_BAR);
getActionBar().hide();
this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
setContentView(R.layout.activity_main);
try
{
WebView myWebView = (WebView) findViewById(R.id.webview);
myWebView.setWebChromeClient(new WebChromeClient() {
});
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
Intent i = new Intent("com.example.myapplication.BlankActivity");
myWebView.addJavascriptInterface(new JavaScriptInterface(this,i), "Android");
myWebView.loadUrl("url");
}
catch(Exception e) {
String msg = e.getMessage();
String trace = e.getStackTrace().toString();
}
}
public class JavaScriptInterface {
Context mContext;
Intent i;
/** Instantiate the interface and set the context */
JavaScriptInterface(Context c, Intent i) {
mContext = c;
this.i = i;
}
/** Show a toast from the web page */
public void onComplete(String toast) {
startActivity(i);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
空白活动.java
public class BlankActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_blank);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.blank, menu);
return true;
}
}
这是视频完成后 webview 运行的页面上的 Javascript 代码。
function onComplete() {
Android.onComplete();
}
作为