Skip to content Skip to sidebar Skip to footer

How To Start Bibxy Activity Using Programming?

I am using S8/S8+. I want to call bibxy app from the Intent. However, I cannot call it. How can I call it from Intent? This is what I try final String SVOICE_PACKAGE_NAME = 'com.s

Solution 1:

This Works for me:

startActivity(new Intent(Intent.ACTION_VOICE_COMMAND).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));

Post a Comment for "How To Start Bibxy Activity Using Programming?"