如何允许WebView应用程序从Android Studio上的设备库中上传图片?

时间:2015-12-13 01:07:40

标签: android webview upload

我是WebView中的第一个应用程序。我的应用程序中有一个页面,允许用户从设备照片库中上传图片以更改头像。

然而,当我测试应用程序时,该按钮不会执行任何操作。我点按,点按,点按,双击!什么都没发生......

我看过很多帖子,我也尝试了很多,似乎没什么用,有些人说在webview中不可能,有人说自从Lollipop等以后它不再是同样的方法......换句话说:我失去了!

以下是我的MainActivity.java的代码:

package com.example.app;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;



public class MainActivity extends Activity {

    private WebView mWebView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mWebView = (WebView) findViewById(R.id.activity_main_webview);

        // Force links and redirects to open in the WebView instead of in a browser
        mWebView.setWebViewClient(new WebViewClient());

        // Enable Javascript
        WebSettings webSettings = mWebView.getSettings();
        webSettings.setJavaScriptEnabled(true);

        // Use remote resource
        mWebView.loadUrl("http://urlofmywebsite");

        // Stop local links and redirects from opening in browser instead of WebView
        //mWebView.setWebViewClient(new MyAppWebViewClient());

        // Use local resource
        // mWebView.loadUrl("file:///android_asset/www/index.html");

    }

    // Prevent the back-button from closing the app
    @Override
    public void onBackPressed() {
        if(mWebView.canGoBack()) {
            mWebView.goBack();
        } else {
            super.onBackPressed();
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.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();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

2 个答案:

答案 0 :(得分:0)

您需要将本地文件更改为bytearray并将其转换为Base64字符串,并且需要使用某个关键字来识别此内容,然后需要将其更改为服务器中的内容以获取该内容。如果你想要代码帮助请告知。另一种选择是使用某些服务将该内容发送到服务器URL链接并将其发送到您的http URL服务器URL。

答案 1 :(得分:0)

您是否希望首先从您的服务器获取有关您要发送的图片的链接,然后只需将网址加载到webview,或者您希望图片转到本地。