Questions tagged [android-intent]

Inquiries about leveraging Intents, Intent Extras, and Pending Intents for initiating an Activity or Service, as well as handling system or application notifications through a BroadcastReceiver. Make sure to check the information provided for a comprehensive understanding of these concepts.

Transferring a JSON array from one activity to another using intents

I had a similar question before, but the solution didn't work for me. So I decided to ask again. My issue is with passing a JSONarray from one activity to another using an intent. In my code, I connect to a MySQL database and retrieve user data whic ...

How to extract JSON data enclosed within HTML tags in Android application

My issue is slightly different than what I expected when I previously asked: Parse JSON to configure android application. I am receiving a JSON object from the server, and when I view it in the browser's source code, this is how it appears: JOSON.co ...

Here's a quick guide on instantly clearing notifications on an Android device

My application displays a notification when I receive new data. The service sends the login time to JSON, which is then checked on the server for any new available data. If there is new data, it retrieves the number of new entries and timing of the latest ...

Ways to utilize the image string obtained from the .getExtra method

I have successfully created a listview in my app and parsed JSON data into it, including images and text. Now I am facing an issue where I need to pass the image to another activity when the user clicks on it. I can easily pass text data using putExtra, bu ...

Passing the JSON object located at the selected index within a listview to the next activity in my android application

Hello everyone, I need some help with a coding issue I'm facing. I have been searching for a solution to this problem but haven't been successful so far. In theory, I know that I should use i.putExtra("jsonArray", jArray.toString()); in my inte ...

Launching Android Calendar app using Intent from a web browser (Chrome)

Did you know that you can use HTML links to open Android apps from within Chrome? Take a look at this resource. If you're trying to open the calendar app from an Android app, the intent should be content://com.android.calendar/time. Learn more about how t ...