0

我正在使用 webview 在 android 应用程序中打开一个网站,但是当单击下载文件链接时,它没有开始下载。我怎么做???

该网站是音乐下载网站,但点击 mp3 文件链接时没有任何反应。

代码:

public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.main);

    // Let's display the progress in the activity title bar, like the
    // browser app does.
    getWindow().requestFeature(Window.FEATURE_PROGRESS);

    WebView webview = new WebView(this);
    setContentView(webview);
    webview.getSettings().setJavaScriptEnabled(true);

    final Activity activity = this;
    webview.setWebChromeClient(new WebChromeClient() {
        public void onProgressChanged(WebView view, int progress) {
            // Activities and WebViews measure progress with different scales.
            // The progress meter will automatically disappear when we reach 100%
            activity.setProgress(progress * 1000);
        }
    });

    webview.setWebViewClient(new WebViewClient() {

        public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
            //Users will be notified in case there's an error (i.e. no internet connection)
            Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
        }
    });
    //This will load the webpage that we want to see
    webview.loadUrl("http://www.xtramasti.com/");



}

@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;
}

}
4

1 回答 1

1

尝试使用webview.setDownloadListener(new DownloadListener() { ... });

资源

文档

注册渲染引擎无法处理内容时要使用的接口,应改为下载。这将替换当前的处理程序。

下载监听接口 onDownloadStart方法:

通知主机应用程序应下载文件

于 2013-08-04T11:13:46.273 回答