• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps App webpage view

Hi,

I would like to do a App to open social applications in the same app. I would like to create a menu to open a facebook, twitter,youtube and the contact form. Does anyone have any documents about how can I do that?

Thanks
 
You can use PackageManager to launch other APK apps installed on the device:

Intent i = new Intent();
PackageManager manager = getPackageManager();
i = manager.getLaunchIntentForPackage("com.sec.android.app.snotebook");

You should check the user has the apk installed before calling the intent. Hopefully this helps
 
I would like to create an app like those images attached!
 

Attachments

  • Capturar.JPG
    Capturar.JPG
    45.1 KB · Views: 74
  • Capturar2.JPG
    Capturar2.JPG
    48 KB · Views: 96
Back
Top Bottom