How to use the WebView to load the local storage pictures on Android 11.0?
There is a richtext :
<img src="/storage/emulated/0/Pictures/IMG_20210604_110651.jpg" alt="dachshund" width="100%"><br><br>
/storage/emulated/0/Pictures/IMG_20210604_110651.jpg is a local image.
This is part code of how to load the image:
String data = "<img src=\"/storage/emulated/0/Pictures/IMG_20210604_110651.jpg\" alt=\"dachshund\" width=\"100%\"><br><br>";
binding.webView.loadDataWithBaseURL(null, data, "text/html", "utf-8", null);
My code could work Under android 10 and 10,but not work in Android 11.
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
These permissions have been obtained.
Any help Thanks in advance.