Android Question Display a screen

peggjones

Active Member
Licensed User
Longtime User
Can anyone help me please?

I have a fairly simple requirement, something I do all the time in other languages.

I display a list of records from a database in a webview (this bit I can do OK).

I then want to be able to to tap on a row and present another screen with details of the row I tapped. I can't work out how to display the second screen.

I'm sure there's a simple answer but I Just can't find it, is there a simple show screen function somewhere?

Many Thanks.
 

peggjones

Active Member
Licensed User
Longtime User
Thanks for that but I'm Ok with the listview/webview bit what I can't work out is how to display the second form.

In VBA I would use "Form123.show", I need to find the equivalent in Basic4Android.
 
Upvote 0

devlei

Active Member
Licensed User
Longtime User
It gets confusing when you double post!!
See NJ Dude's response to your duplicate post. It explains StartActivity in more detail.
 
Upvote 0

Ratters

Member
Licensed User
Longtime User
Can anyone help me please?

I have a fairly simple requirement, something I do all the time in other languages.

I display a list of records from a database in a webview (this bit I can do OK).

I then want to be able to to tap on a row and present another screen with details of the row I tapped. I can't work out how to display the second screen.

I'm sure there's a simple answer but I Just can't find it, is there a simple show screen function somewhere?

Many Thanks.


Could you not add a panel, hide it then visible=true and .bringtofront on the action of the tap ?
 
Upvote 0
Top