I’m new to Android Studio. I’m trying to design an activity where, given a URL, I can click on some button that allows me to extract the first 20 images that it finds on the webpage.
Is there some way to do this in Java without a library?
I’m new to Android Studio. I’m trying to design an activity where, given a URL, I can click on some button that allows me to extract the first 20 images that it finds on the webpage.
Is there some way to do this in Java without a library?
2
Answers
If you are using web page url then use webview class in android.here is the website document
https://developer.android.com/reference/android/webkit/WebView
otherwise you creating own layout then use 2 famous dependencies:
You need Asynctask
–>