android-intent tag

22 questions


1 answers
77 views
0
Send URL address to Intent.

I'd like to put the coordinates on Google Maps and put them on the screen. Is there a way to use Intent to display the browser at a specific URL address? Please give me a hint.

1 years ago

1 answers
126 views
0
How do I send an email using JavaMail API without the library built into the app on Android?

I'm going to make an app to send emails.Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);If you do this, you will send an email with the one that is embedded in the Android app What...


1 answers
119 views
0
I want to open the URL with my Android web browser on my app

try { Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(download_link)); startActivity(myIntent); } } catch (ActivityNotFoundException e) { Toast.makeText(this, No application can handle t...


1 answers
124 views
0
Android: How to detect other apps when they're

Hi. I'm currently trying to develop an app that prevents users from using certain apps without passwords. Here's the scenario...I know how to do everything else, but I don't know what to do with numbe...


1 answers
109 views
0
How to run other apps in an app

I'd like to run another package installed on my app, but I think it's possible if I use the int, but I can't find any way to find it. Could you please give me a link or explanation about it?

1 years ago

1 answers
68 views
0
To call another activity by using an int in an application.

I have two activities in my project. If you click the first button, the activity starts. If you click the button,I'm trying to end the activity, but nothing happens when I click the button in the firs...


1 answers
93 views
0
How to manage 'startActivityForResult' on Android

Recall the second activity through startActivityForResult from one activity. The second activity contains several functions that terminate it. Normally, it does not return a result value, but only one...

1 years ago

1 answers
105 views
0
Android YouTube App Video Play Intent

I created an app that allows you to download YouTube videos from Android. Now what I need is, when I play a video on YouTube, I also download it. To do this, you need to know the Intent that the YouTu...


1 answers
54 views
0
What is int on Android?

What is the role of int in Android?


1 answers
49 views
0
How do I insert and receive String data as putExtra() and getExtra()?

Please tell me how to write getExtra() and putExtra(). How I'm going to use it is There is a string variable called str, and I want to save this value. I want to save it and send the data from this ac...

1 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.