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

Search results

  1. A

    Apps Activity (UI) crashing

    From a broadcast reciever, I'm creating (starting) an activity: Intent iActivity = new Intent(context, "CLASS"); iActivity.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(iActivity); Once, the Activity is visible, I try and hit the back button, but the Application crashes every...
  2. A

    Apps removing app from applicatiosn list

    I've created a GPS app for my teenage daughter that basically sends me the GPS coordinates of where she is and puts her on the Google map. I've been able to hide the fact that the app exists on her phone, except where the app is still listed on the managing applications list (the 3rd party app...
  3. A

    Apps removing icon from 3rd party list

    Is there any way to programmatically remove or delete my application from the 3rd party list or managing applications list without deleting my application?
  4. A

    Apps Code to delete application

    Is there a way to programmtically delete an application on the android??