39 questions
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,...
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...
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...
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?
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.
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...
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...
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...
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
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.