22 questions
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...
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...
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?
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...
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...
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...
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...
« | - 2 - | » |
© 2024 OneMinuteCode. All rights reserved.