Posts

Showing posts with the label download image from webview

Download/Save Image from WebView on Long Pressing Image

Image
In this tutorial we will learn how to download/save image displayed in the WebView on long clicking the image. When you long click on image, a dialog will be displayed saying to download image, when you click on it the image starts downloading, a notification of downloading image will be displayed. Download/Save Image from WebView Step 1:  Create a new project OR Open your project Step 2: Place a download icon in res>drawable folder Step 3: Code AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android= "http://schemas.android.com/apk/res/android" package= "com.blogspot.devofandroid.myapplication" > <!--add internet permission--> <uses-permission android:name= "android.permission.INTERNET" /> <application android:allowBackup= "true" android:icon= "@mipmap/ic_launcher" android:label= "@string...