Skip to content

Tag: android-intent

From Adapter into Intent

I have an Adapter for a ListView I have. Every item in that list has a Button, when the user presses that Button, it will go into another activity with info about that specific item’s info (info is gotten from it’s associated object). How can I make it so when I press the Button, I will make a new…

How to share image via intent in android 10

I’m fetching an image from a URL as a bitmap using glide, and onResourceReady() I’m trying to share the image via intent, but I’m getting an exception. I’m using Android 30. My method for providing file URI. Source MY Error I also tried using the IntentShare Library But there I was get…