Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 Discussions

Invoke another Apps

Charles_M_2
Beginner
588 Views

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?

 

 

 

 

 

0 Kudos
1 Reply
PaulF_IntelCorp
Employee
588 Views

On an Android device this is referred to as "intents." Here's a Google search that will provide more info.

0 Kudos
Reply