username89

New member
Jan 14, 2013
0
0
0
Visit site
Hello . I'm developing Android app and I found a little problem.
From my app I need to call an app that already exists that the Memo for reminders, (and the voice recorder). Can anyone tell me what is the path to be included in the intent? I searched in the web but couldn't find anything that suited my case.

I tried this:
public void appExt (View v) {
Intent i = new Intent (Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
i.setPackage ("com.example.android.notepad");
this.startActivity (i);

but not acting. If there are errors in the choice of methods, please tell me.
Thanks to everyone who answered.