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

Search results

  1. G

    Apps Return to activity when third party app completes action

    I am launching some MP4 videos from within my application using the following INTENT (in activity B): if (v == image5) { File file = new File(Environment.getExternalStorageDirectory() + "/.intro/Resources/Res5.mp4"); if (file.exists()) { Uri path = Uri.fromFile(file)...
  2. G

    Apps back button returns to wrong activity when opening pdf via uri

    Im hoping this is simple, but im fairly confused as to what is going on. I am launching a PDF from an Imagebutton in an android activity using a piece of code I copied from elsewhere in my app. if (v==imagebutton20) { File file = new File("/sdcard/documents/20.pdf")...