Son Forum Aktiviteleri
18Kitkat Webview File Input sorunu ?
https://github.com/cdibened/filechooser
http://stackoverflow.com/questions/19882331/html-file-input-in-android-webview-android-4-4-kitkat
Burada sorunu çözmüşler ama ingilizcem yeterli olmadığı için çıkamadım işin içinden, kitkat sürümlerinde dosya seçme olayı çalışmıyor webview içindeki.
Varmı öneriniz ?
Teşekkürler.
Webview içinde file input butonu
Aşağıdaki kodlarla bazı sürümleri çalıştırdım, ancak güncel android sürümlerinde webview içindeki gözat butonları çalışmıyor nasıl yapabiliriz ?
web.setWebChromeClient(new WebChromeClient()
{
//The undocumented magic method override
//Eclipse will swear at you if you try to put @Override here
// For Android 3.0+
public void openFileChooser(ValueCallback<Uri> uploadMsg) {
mUploadMessage = uploadMsg;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("image/*");
MainActivity.this.startActivityForResult(Intent.createChooser(i,"File Chooser"), FILECHOOSER_RESULTCODE);
}
// For Android 3.0+
public void openFileChooser( ValueCallback uploadMsg, String acceptType ) {
mUploadMessage = uploadMsg;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("*/*");
MainActivity.this.startActivityForResult(
Intent.createChooser(i, "File Browser"),
FILECHOOSER_RESULTCODE);
}
//For Android 4.1
public void openFileChooser(ValueCallback<Uri> uploadMsg, String acceptType, String capture){
mUploadMessage = uploadMsg;
Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("image/*");
MainActivity.this.startActivityForResult( Intent.createChooser( i, "File Chooser" ), MainActivity.FILECHOOSER_RESULTCODE );
}
});
setContentView(web);
}
Konum Bilgilerini String olarak kullanma.
LocationManager lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
Location location = lm.getLastKnownLocation(LocationManager.GPS_PROVIDER);
double longitude = location.getLongitude();
double latitude = location.getLatitude();
final WebView checkbrowser = (WebView) findViewById(R.id.webView2);
checkbrowser.getSettings().setJavaScriptEnabled(true);
checkbrowser.loadUrl("http://www.sitem.com/lokasyon.asp?long=" + longitude );
Bu şekilde kullandığımda hata alıyorum, yapmak istediğim sitem.com/lokasyon.asp?long= kısmına longitude değerini göndermek. Nasıl yapabilirim ?
Teşekkürler.
MyApplication3 ismini değiştirme ?
https://play.google.com/store/apps/details?id=com.xxxxxxxxx.myapplication3.app
android uygulamamı yükledim hatta 4.sürümü yükledim ama url'de myapplication3 yazıyor onu nasıl değişebilirim. Değişirsem güncelleme gönderebilirmiyim ?
Android'de uyumluluk ?
Android'de hazırladığımız projenin bütün sürümlerde sıkıntısız çalışması için ekte olan pencerede ayarlar ne şekilde olmalıdır. Tasarım vs. hiç önemli değil. En uyumlu şekli hangisidir. Yaptığım program sadece Kitkat sürümlerinde sorun yaratıyor mesela.
Teşekkürler.
Konum Bilgilerini String olarak kullanma.
Yine hata alıyorum hocam. Unable to start activity ComponentInfo
Webview içindeki file input çalışmıyor.
Çalışan bir örnek buldum :)
https://code.google.com/p/android/issues/detail?id=62220
Webview içinde file input
Çalışan bir örnek buldum :)
https://code.google.com/p/android/issues/detail?id=62220
web uygulamasını androide dönüştürme
Merhaba Resul,
Şuan bende aynı şey için uğraşıyorum. Birkaç ön bilgi verebilirim sana;
- Arayüzün mobil cihazlarla uyumlu mu ? Değilse responsive bir arayüz kodlaman gerekiyor mobil için.
- Eğer sadece ihtiyacın olan bir ikonu olan full screen bir webbrowser ise android studio kurmanı öneririm. Eclipse falan yormasın, hevesini kaçırır.
Benimle iletişim kurarsan android bilgim çok geride de olsa yardımcı olabileceğimi düşünüyorum. :)
İyi çalışmalar.