Android webview not letting me open file chooser -


when tap choose file this url in android webview, nothing happens. here snippets code code.

androidmanifest--

<uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.camera" /> <uses-permission android:name="android.permission.read_external_storage" /> <uses-feature android:name="android.hardware.camera" /> <uses-permission android:name="android.permission.write_external_storage" /> 

webview setting --

websettings.setjavascriptenabled(true); websettings.setallowfileaccess(true); websettings.setallowfileaccessfromfileurls(true); websettings.setallowuniversalaccessfromfileurls(true); websettings.setdatabaseenabled(true); websettings.setloadwithoverviewmode(true); 

already tried this link no success although there lot given in link. can me on this?

thanks in advance!


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -