Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to enable WebView to support inputfile in Android to enable camera / select photo function

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly shows you "how to enable WebView to enable camera / select photos in Android", the content is easy to understand, clear, hope to help you solve your doubts, the following let the editor lead you to study and learn "how to enable WebView in Android to enable inputfile to enable camera / select photos" this article.

If webview wants to call up input-file to take pictures or select files, you can override the specified method in the webview.setWebChromeClient method to intercept the input event of webview, and do the corresponding action.

Android code

WebView.setWebChromeClient (new WebChromeClient () {@ Override public void onProgressChanged (WebView view, int newProgress) {if (newProgress = = 100) {progressBar.setVisibility (View.GONE); / / disappear after loading the web page progress bar} else {progressBar.setProgress (newProgress); / / set the progress value progressBar.setVisibility (View.VISIBLE); / / display the progress bar}} / * 8 (Android 2.2) when you start loading the web page

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 269

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report