- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I have created two Apps, one is the main Index Apps, another is the Application Apps, which is used to show the product catalog. This two apps are store in same android device. I want to call this application Apps from the Index Apps that I have added the following statement in the index_user_script.js, but it doesn't work.
$(document).on("click", "#home_btn_3", function(evt)
{
Intent intent = new Intent();
intent.setClassName("com.dadakitchen.ecatalog.dada", "com.dadakitchen.ecatalog.dada.SplashScreenActivity");
startActivity(intent);
return false;
});
Does anyone know the proper procedure to call another Apps?
- Tags:
- HTML5
- Intel® XDK
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
On an Android device this is referred to as "intents." Here's a Google search that will provide more info.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page