Open Instagram User Profile
Here is a method to get the Intent to open the Instagram app to the user's profile page:
Technical answers from my Stack Overflow history, with source links and licenses.
Showing 7 of 7 answers tagged android-intent
Exported May 9, 2026
Here is a method to get the Intent to open the Instagram app to the user's profile page:
Logging the exception on your gist on Android Nougat reveals the problem: android.os.FileUriExposedException: file:///storage/emulated/0/test.mp4 exposed beyond app through ClipData.Item.getUri() On Android Nougat you...
From looking at your code and logs I think your problem is calling onBackPressed in your fragment. Your AlarmFragment.onPause should not be calling getActivity().onBackPressed() . This is most likely what is causing...
The attachment is not readable by other apps because you are saving it to getFilesDir() . Simply change getFilesDir() to Environment.getExternalStorageDir() and other apps will be able to handle the saved image. This...
Something like this should work. Change file to whatever you want.