Webview File Upload Sorunu
Merhaba çok java bilgim yok. Projem için android uygulamayı webviewle yapmaya çalışıyorum. Fakat sitemde ki file upload butonuma tıklandığında herhangi bir işlem olmuyor. Kodlarım aşağıda internette araştırdığım kodları denedim ama başarılı olamadım yardımcı olacak arkadaşlara şimdiden teşekkürler. package com.example.buralardabul; import android.app.Activity; import android.app.ProgressDialog; import android.os.Bundle; import android.webkit.WebView; import android.webkit.WebViewClient; import android.widget.Toast; import android.webkit.WebChromeClient; import android.webkit.GeolocationPermissions; public class MainActivity extends Activity { private WebView webView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); webView = (WebView) findViewById(R.id.webView1); webView.getSettings().setJavaScriptEnabled(true); webView.getSettings().setGeolocationEnabled(true); webView.getSettings().setJavaScriptCanOpenWindowsAutomatically(true); webView.getSettings().setAllowFileAccess(true); webView.setWebChromeClient(new WebChromeClient() { public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback) { callback.invoke(origin, true, false); } }); final ProgressDialog progressDialog = ProgressDialog.show(this, "Buralarda Bul", "İlanlar Yükleniyor...", true); webView.setWebViewClient(new WebViewClient() { public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) { Toast.makeText(getApplicationContext(), "Sayfa Yüklenemedi! Bağlantınızı Kontrol Edin.", Toast.LENGTH_SHORT).show(); } @Override public void onPageFinished(WebView view, String url) { super.onPageFinished(view, url); if (progressDialog.isShowing()) progressDialog.dismiss(); } }); webView.loadUrl("http://www.buralardabul.com"); } }