Languages

Menu
Sites
Language
API to move application into background/foreground state

Is there API  in Tizen to change application state. For Example:
1. Could [Native App] move itself in background state?
2. Could [Native App] manage another App to move it in background/foreground state using ID of another application or using something else?

Thank you.
Alexey.

Edited by: Brock Boland on 17 Mar, 2014 Reason: Paragraph tags added automatically from tizen_format_fix module.

Responses

2 Replies
Pushpa G
AFAIK, there is no API to send an app to background and foreground, However, if you want to send your app(appA) to background, you can launch another app(appB) so that your currently running app will automatically receive the background event and goes to background and later you can get your appA back to foreground from the task manager. Also check the call back functions called when app goes to background or foreground: virtual void Tizen::App::UiApp::OnBackground(void) virtual void Tizen::App::UiApp::OnForeground(void) in Tizen IDE>Help>Help contents>Tizen Native App Programming > API Reference > Namespace List > Tizen::App>Tizen::App::UiApp Class Reference
Alex Dem
Thank you for your response. I know about described possibilities. I just tried to find more extended and flexible API. Alexey.