11-08-2011 08:09 AM
Hello,
How the application hide by programtically ?
Thanks.
Solved! Go to Solution.
11-08-2011 08:14 AM
11-08-2011 08:36 AM - edited 11-08-2011 08:38 AM
If you are using Eclipse software,
In the following Image when the programmer select
" Do not display the application icon on the blackberry home screen" check box; then it does n't show the application.
Note:
if you select that check box you must also select the above button " Auto-run on start up", because without seeing the application how can you run.
11-08-2011 09:00 AM
Alternatively, if you just want to hide the program screens, i.e. put the app to the background:
UiApplication.getUiApplication(),requestBackground
11-08-2011 11:16 PM
Hello,
Actully i need like this,Menas i put one button in apps when user click to button then application hide by programtically so user not show those application,
Thanks.
11-09-2011 12:01 AM
Which is exactly what peter_strange has suggested - have you tried his suggestion?
11-09-2011 12:53 AM
Hello,
I need this type
--> First i develop one apps
--> Then open app at that time one fullScreen push and in Full Screen i add one button Field.So at that time i click those button so application hide.
So how to do like this?
11-09-2011 04:08 AM
11-09-2011 04:54 AM
Just to spell this out, here is what you need to do to use the lines I gave you:
In the fieldChanged method for the button, you would execute the lines I have shown you.
This will put your UiApplication into the background. The user will be able to bring it to the foreground again by pressing on the icon, or by selecting the application form the task switcher.
The user can actually do pretty much the same thing by pressing the menu and selecting 'Switch Application, if it appears on the menu. And this is pretty much the same as pressing and holding the menu key, and then selecting another application from the task switcher.
If this is not what you want, then please describe what you want again and why it is different to this.