===== Multiple Screens ====== {{http://www.proworkflow.com/features/mobile/proworkflow-mobile-screens.png?100 }}All Android graphical user inteface elements are fitted into Screens. Your simple application may have just one screen. More sophisticated apps may have multiple screens. For example About, Help or Settings screens together with main app screen. Sometimes you need to pass information from one screen to another. This tutorial will cover this. It is about screens usage and passing data between them. ==== GUI ==== By default //first// screen is named as "Screen1" and cannot be renamed. You can add more screen if you need by clicking ''Add Screen'' button. Other screens, as any other components can be renamed to whatever you want. In this tutorial I just rename labels that I use as separators, and all other components are left as it is. ^Screen1^Screen2^ |{{section>tutorial:multiple_screens_helper#cell1&noheader&nofooter}}|{{section>tutorial:multiple_screens_helper#cell2&noheader&nofooter}}| |{{https://lh4.googleusercontent.com/-5RqzYomnTHc/T4QNH4pIK-I/AAAAAAAAD0g/3_1A0v1b-5U/s128/screenshot.10-04-2012%2013.36.35.jpg}}|{{https://lh4.googleusercontent.com/-nNzRl0zaOgU/T4QTHyU8TQI/AAAAAAAAD08/pwvgia30B28/s128/screenshot.10-04-2012%2014.02.11.jpg}}| As this tutorial is not about GUI, but more about working concept, so i will not write all properties of components. I just mention that as separator I use tip [[tutorial:separator_in_appinventor|Separator]]. So, on launching application, "Screen1" will be published as initial screen. From "Screen1" you can open other screens and pass data also receive data from other screens. Screens can be opened with call open another screen. If you wish to pass parameter to new screen, use call open another screen with start value. Quite the same way screens can be closed with calls close screen and close screen with value. These calls can be found in Controls section. >Multiple screens functionality does not works in emulators AppInventor. To test how it works on emulator you should click drop down menu in top right in AppInventor development screen and select //Download to Connected Phone//. This way application will be compiled, downloaded from AppInventor server, uploaded to your emulator (or live phone if you have connected it) and installed as regular application. >If you do not wish to use multiple screens in you application, but you would like use graphical functionality as in multi-screen application, you may want to use {{popup>ai:component:arrangement:verticalarrangement|VerticalArrangement}} as you Screen #1, #2 and so on and place all components inside it. To hide one {{popup>ai:component:arrangement:verticalarrangement|VerticalArrangement}} just set its property Visibility to false. This way you can use multiple screens in AppInventor's emulator without any additional effort. This method has it's own pros and cons. >Control call's get plain start text and close screen with plain text should be used in communication with external applications. In communication with external apps- only plain text can be passed, so there is no practical usage of these calls within the same applications screens. In this tutorial I'll just pass text from {{popup>ai:component:basic:textbox|TextBox1}} to Label2 in Screen2. This shows how to pass one parameter- text. Right after I will try to pass multiple values from Screen2 to main Screen1. This is achieved with lists- that is the way to pass multiple parameters from one screen to another. From Screen2 I will pass {{popup>ai:component:basic:checkbox|CheckBoxes}} #1 and #2 state and TextBox1 value to corresponding components in Screen1. >On screen swithing in AppInventor, Blocks Editor will show only components and calls that belong to current screen. Components in another screens can't be accessed directly. ==== Programming part (AppBlocks) ==== {{https://lh5.googleusercontent.com/-mcf5V8B_TC4/T4QxBkoClWI/AAAAAAAAD1M/C5RWrQWJ56s/s128/screenshot.10-04-2012%2016.09.19.jpg}} Passing {{popup>ai:component:basic:textbox|TextBox1}} value to Screen2 is straight forward. On {{popup>ai:component:basic:button|Button1}} click call open another screen with start value with parameters: text "Screen2" (as screen name) and "{{popup>ai:component:basic:textbox|TextBox1}}.Text" {{https://lh3.googleusercontent.com/-kjvsDRD_D7I/T4QxBtmQ6OI/AAAAAAAAD1Q/__wGeayJEbA/s128/screenshot.10-04-2012%2016.09.41.jpg}} Also on Screen1 it must be defined what will happen when we pass information from other screens. For this should be used Screen1.~OtherSreenClosed with the same parameter as opening new screen. First parameter- "otherSreenName" is the name of screen on with close event this function should be called. Another parameter "result" is results that another screen passes. We know that it will be list, but here may be whatever else: image, text, number and so on whatever you need. As I have planned to pass all three parameter as a list, I don't need to check is it list. But for good practice and better error handling you should check what you get as you are expecting a list. So on OtherScreensClosed you just need to set properties for two {{popup>ai:component:basic:checkbox|CheckBoxes}} and {{popup>ai:component:basic:textbox|TextBox}} as an items from received list. Property can be pulled-out with a call select list item and passing two parameters. Parameter one is a list returned from Screen2 with results, and other parameter is index (number of item in list). >Elements indexes in AppInventor lists begins with 1, not with 0 like in other languages. {{https://lh5.googleusercontent.com/-U8-C_A_nIaQ/T4Q2KOt45II/AAAAAAAAD1s/CRDZ0aar5Bs/s128/screenshot.10-04-2012%2016.31.00.jpg}} Now we need appblock events and functions in "Screen2". It's quite straight forward: on "Screen2" initialization event set Label2 text as in get start value. Simple as that. {{https://lh5.googleusercontent.com/-kXpt1ggquDE/T4Q2KHJQS6I/AAAAAAAAD1o/unlptC4unvA/s128/screenshot.10-04-2012%2016.31.17.jpg}} To pass few parameters back to "Screen1" we should use lists. Items #1 and #2 will be state of corresponding {{popup>ai:component:basic:checkbox|CheckBoxes}}, and #3 item will be text from {{popup>ai:component:basic:textbox|TextBox1}} in "Screen2". Glue everything into one list type variable with call @@make a list@@ and pass it to screen close call close screen with value. ==== Full view for Multiple Screens ==== Upper- Screen1; Lower- Screen2 {{https://lh4.googleusercontent.com/-1HSOqaRC604/T4Q7ZBVblhI/AAAAAAAAD2E/X8Xl9K0BQjY/s640/screenshot.10-04-2012_16.46.46.png}} {{tag>tutorial ai appinventor}} ~~DISCUSSION~~