How should I make a "config" page in Android world ?

Andre-K

Member
Licensed User
Longtime User
Main application screen: contains some buttons/graphics.
now I need a another "view" (like another form) - to temporarily display a view that contains some configuration options.

I guessed that "tabhost" is the way to do it, but I still don't get how to display another "view" .
 

Cor

Active Member
Licensed User
Longtime User
Make another layout and call from main layout

B4X:
StartActivity(activityname)  'without quotation marks

when checking e.g back key do

B4X:
   activity.Finish  'close activ activity
   StartActivity(Main) 'show the main activity again



grCor
 
Upvote 0

Andre-K

Member
Licensed User
Longtime User
thanks

BTW: I can add an object by "add view" - but how can it be removed ? - "delete" (on keyboard) does not work - and I miss "remove" option.
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…