Android Question Open 10 urls in webview one by one in activity with close button

kmap

Member
Licensed User
Longtime User
I want to open 10 url in the activity with close button

I have created a layout with webview and close button

from the main activity i am passing the url to new activity

close button also works

dont know how do i open 10 urls which are in loop


For i =0 To books.Length -1

s10="https://xyz.com?text="& books(i).desc &"&url=" & books(i).url
StartActivity("web")

next
I want to open 10 urls one by one in "web"

s10 i am using to pass values from one activity to other
 

kmap

Member
Licensed User
Longtime User
I want to open 10 windows one by one

when i close the first window then 2nd shd open

each window opens different url

is there any way to block the loop so when the window is closed then loop runs for second url

Regards
 
Upvote 0
Top