我想将youtube的webversion放在我的应用程序中,您可以在不使用标准浏览器的情况下完成所有操作(例如观看和搜索视频......)。我已经编写了这段代码,但每次弹出我想要使用的浏览器(如Google Chrome,..),但我想让它显示在我的appscreen上,我已经设置了互联网的许可。
这里是代码:
youtube.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
youtube.java:
package com.example.listentomusic;
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class Youtube extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.youtube);
WebView wv = (WebView)findViewById(R.id.webView1);
wv.loadUrl("http://www.youtube.com");
}
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
答案 0 :(得分:0)
您需要创建CustomWebViewClient&amp;将它设置为您的webView。
喜欢这个 -
private class CustomWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return true;
}
}
现在将此CustomeWebViewClient
设置为webView
-
WV.setWebViewClient(new CustomWebViewClient());
同样main(String[] args)
没用,请将其删除。