intent tag

39 questions


1 answers
70 views
0
When I call Android ACTION_VIEW, can I call the gallery by sending it to file:// or content://?

When you click on a cluster marker, you want to implement the ability to open a picture in the Android System Gallery using the path of the file that the marker you clicked on.Like the annotated part,...

1 years ago

1 answers
83 views
0
I want to transfer data between two activities using Android int.

I'm using the Intent function to make a simple product calculator applicationThis calculator uses a total of two activitiesIn Activity 1, enter the quantity of two items with buttons (four buttons fro...

1 years ago

1 answers
135 views
0
Please teach me how to transfer data between activities

What I thought is that if there is a login page, you log in and there is a logout button for each activity.So, when I press logout, I want to pass the logged out or logged in session ID to another act...

1 years ago

1 answers
103 views
0
I want to start a new activity when I click a button on Android, what should I do?

How do I display a new activity when I click the activity button on the Android app?Also, will it be possible to deliver data between these two activities then?


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...


2 answers
88 views
0
I have a question about Android int.

public void getIntentProcess(Intent intent) { String comment = intent.getStringExtra(comment); int rating = Math.round(intent.getFloatExtra(rating, 0.0f)); if (comment != null) { items.add(new Com...

1 years ago

1 answers
99 views
0
[Android] I want to know how to transfer data between apps -> Web -> apps.

I've solved how to call an app on the web, but I'm not sure how to get the data from the delivery together.I can't find it even if I search for it. Is there a way? Please leave comments

1 years ago

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...

« - 2 - »

© 2024 OneMinuteCode. All rights reserved.