android-intent tag

22 questions


1 answers
108 views
0
About the information Android gives to NFC apps launched with int filter

We are considering passing data to the Android app via NFC Forum Type 4A's NDEF.After creating an application that reads and writes NDEF on Android, you can automatically launch the application by Wri...

1 years ago

1 answers
77 views
0
Choose music within Google Music on Android.

In the Android application that I created around Android 2.1,Intent=newIntent();int.setAction(Intent.ACTION_PICK);int.setType(MediaStore.Audio.Media.CONTENT_TYPE);int.setData(MediaStore.Audio.Media.EX...

1 years ago

2 answers
68 views
0
I don't know how to pass the database id during the screen transition.

I would like to create a Tap each item in ListView to see the details screen corresponding to the item flow in Kotlin.I don't know how to get the id of the item I tapped and give it to the detail scre...


1 answers
84 views
0
How to read data from Intent on Android

I sent data to Intent from one activity to another. Intent i=new Intent(context,SendMessage.class);i.putExtra(id, user.getUserAccountId()+);i.putExtra(name, user.getUserFullName());context.startActivi...

1 years ago

1 answers
84 views
0
Send Object from Activity to Another Activity

I want to send the object of the customer class to another activity. So I want to show you in other activitiesWhat should I do?public class Customer { private String firstName, lastName, Address; int ...


1 answers
74 views
0
I'd like to select an image from the gallery app installed on Android as a code.

I want to open the gallery app's photo installed on Android from my app What can I do when I have the URI of the picture?


1 answers
129 views
0
How do I get a list of applications installed on the device, select them, and run them?

I asked a similar question this week. I still don't understand. How do you get all the applications installed on your device?Can I get it? And how do you do what you choose?Intent intent = new Intent(...

1 years ago

1 answers
121 views
0
[Android] Button inaction when returned after moving activity to int

I want to refresh after registering the article, so I'm trying to use the int while I'm looking for it, but if I go to the int and come back, the registration button that I have to access the DB doesn...

1 years ago

1 answers
126 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
97 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 - »

© 2024 OneMinuteCode. All rights reserved.