如何在 Android Studio 中使用 WebView 上传文件? [英] How to Upload Files with WebView in Android Studio?

查看:45
本文介绍了如何在 Android Studio 中使用 WebView 上传文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻求有关此代码的帮助.我需要补充一点,您可以从此应用程序上传文件.但我不能让它工作......所以这很好用.我能做的是下载,但不能上传文件.我能做什么?我把代码留在下面.请明确具体.考虑仅支持Android 3.0>.

I'm looking for help with this code. I need to add that you can upload files from this application. But I can not make it work as well .... So this works great. What I could do is download, but not upload files. As I can do? I leave the code below. please be explicit and specific.Consider that only supports Android 3.0>.

我的意思是这是一个 WebView,当你在 Facebook 网站上时,点击按钮上传图像,然后打开一个框,让你选择是拍照还是在设备中查看.我要那个.尽我所能?

I mean this is a WebView which one when you are on the website Facebook touches the button to upload an image and a box that lets you choose if you take a picture or look in the device is opened. I want that. As I can do?

public class MainActivity extends ActionBarActivity {

    private WebView mWebView;
    private ProgressBar progressBar;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mWebView = (WebView) findViewById(R.id.activity_main_webview);

        // Enable Javascript
        WebSettings webSettings = mWebView.getSettings();
        webSettings.setJavaScriptEnabled(true);
        mWebView.loadUrl("file:///android_asset/www/index.html");
        // Force links and redirects to open in the WebView instead of in a browser
        mWebView.setWebViewClient(new WebViewClient());
        // enable local storage
        // enable local storage
        mWebView.setDownloadListener(new DownloadListener() {
            public void onDownloadStart(String url, String userAgent,
                                        String contentDisposition, String mimetype,
                                        long contentLength) {
                Intent i = new Intent(Intent.ACTION_VIEW);
                i.setData(Uri.parse(url));
                startActivity(i);
            }
        });

        webSettings.setBuiltInZoomControls(true);
        webSettings.setSupportZoom(true);


        progressBar = (ProgressBar) findViewById(R.id.progressbar);

        mWebView.setWebChromeClient(new WebChromeClient() {
            @Override
            public void onProgressChanged(WebView view, int progress) {
                progressBar.setProgress(0);
                progressBar.setVisibility(View.VISIBLE);
                MainActivity.this.setProgress(progress * 1000);

                progressBar.incrementProgressBy(progress);

                if (progress == 100) {
                    progressBar.setVisibility(View.GONE);
                }
            }
        });

    }


    @Override
    public void onBackPressed() {
        if (mWebView.canGoBack()) {
            mWebView.goBack();
        } else {
            // Let the system handle the back button
            super.onBackPressed();

        }
    }


    public class MyAppWebViewClient extends WebViewClient {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            if (Uri.parse(url).getHost().length() == 0) {
                return false;
            }

            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
            view.getContext().startActivity(intent);
            return true;
        }

    }


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

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}

推荐答案

此处可以回答您的问题.

您将需要实施

1. "openFileChooser" for android>3 and for android >4.1
2. "showAttachmentDialog"
3. "onActivityResult"

这样会弹出一个文件选择器窗口,您就可以上传文件了

This way a file chooser window will pop up and you will be able to upload your file

这就是我在代码中以类似方式使用相同方法的方式.

this is how I used the same method in my code in a similar way.

希望有帮助

这篇关于如何在 Android Studio 中使用 WebView 上传文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆