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

Search results

  1. P

    App within an app

    Hi guys, building a program with a number of menu options. One of them I want to launch another app. I tried using intents code but seem to keep getting an error. Heres my code. package com.androidbook.prototype; import android.content.Intent; import android.os.Bundle; import...
  2. P

    Installed app package name?

    Hi, does anyone know how you can find the package name for a particular app already installed on your handset? They usually go like: com.example.prototype (Where the folder prototype cotains the runnable files) Trying to use the intent function to launch an app within an app. Was told...