언어 설정

Menu
Sites
Language
Different entry points in my App

Hi
I want have two entry points for my App (or more), for example:
1. normal launch from idle
2. app is launched from another app
So in different cases I should show for user differnt UI.

I have found that most simple way is: LaunchApplication() with arguments but it is deprecated method.

I guess I should register IAppControlProviderEventListener interface using SetAppControlProviderEventListener and reimplement OnAppControlRequestReceived()  to get launch argument and I should configure manifest too.

And I could launch my App from another App this way:
-AppManager::FindAppControlN(AppId,Operation);
-Tizen::App::AppControl::Start(..);
For implicit launch I could use:
-Tizen::App::AppControl::FindAndStart(..)

Am I right?
Is there another ways? Using notifications or something else.
Maybe I have missed something. Any useful examples etc.

Thank you in advance.
Alexey.

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

Responses

2 댓글
https://developer.tizen.org/help/topic/org.tizen.web.appprogramming/html/guide/app_guide/alarm.htm
Alex Dem
Thank you for info. Alexey.