i have question in android manifest i define domain/{dynamictext}. but when i create link domain/{dynamictext}/anothertext it still can open my app screen why? bez i define only domain/{dynamictext}
@murthyvemparala16392 жыл бұрын
Is the voice low or I am having a problem in hearing thro headset ?
@ILikeItPicasso2 жыл бұрын
Thanks man, wherever you are 🐥
@0u55ama2 жыл бұрын
thank you bro but i have a question is the code for the java is similar ??
@chfmrf96052 жыл бұрын
Great for getting an overview on how this works! Thanx!
@TJTHEFOOTBALLPROPHET2 жыл бұрын
THANK YOU FOR BREAKING THE INTO DOWN TO A BASIC LEVEL!!! I tried using only the phone but your way with terminal is the easiest for students! Much love from New Orleans ❤️💪
@CanalRenaultClio3 жыл бұрын
FileProvider is jut a ridiculous way to solve a problema that does not exist. Now just a simple file share that should take 5 lines of code requires to create 5 files
@micromymario232 жыл бұрын
It sucks from all points of view, it doesn't make any sense, not to mention what they did in the file management on version 30 of the SDK. I believe that whoever is in charge of google doesn't have the slightest idea of what it means in PRACTICE to make such changes for a programmer and for the management of all his applications that suddenly stop working.
@ommandavia3 жыл бұрын
Thanks for the video. May I ask how did you enable dark mode in android docs?
@conorzayden81833 жыл бұрын
i dont mean to be so off topic but does anyone know of a method to get back into an Instagram account? I somehow forgot my password. I would appreciate any tricks you can offer me.
@adityaroy18513 жыл бұрын
How to file open by my own app ?
@etelot3 жыл бұрын
How about PDF files anybody?
@i-nozex3 жыл бұрын
I'm strugling quite a bit in the oposite end, on how to handle/request the shared data (my app will be the receiver of the shared content, in my case is a CSV file, I'm able to get a "content://" path but not the actual shared file)... It's been quite hard to find resources in this matter, anyone has a good tutorial/how does it work/code example or any other kind of information that could help me to understand and implement? thanks!
@amm96533 жыл бұрын
does this work with android 10 and 11, cause I've implemented some very similar functionality to what you have in the video but in android 10 and 11 I get this error "java.lang.SecurityException: Permission Denial" whenever I try to trigger the share intent, but with API < 29 it works normally
@androidtutorials93283 жыл бұрын
Make sure your SDK as mentioned is Android 11 or above. You can also get latest from here: developer.android.com/studio/releases/platform-tools As well, (For Linux or Microsoft Windows only) try this command instead: adb connect ipaddr:port developer.android.com/studio/command-line/adb
@carlosedgard30734 жыл бұрын
Nice tutorial, but will you have this example in Java?
@denzmc4 жыл бұрын
I can't see the text
@androidtutorials93284 жыл бұрын
I'll zoom in more for my next videos. Thanks. You can also find the code on GitHub. Check description.
@jaygitonga20264 жыл бұрын
hey , do you have this but for pdfs?
@rishabhnayak42434 жыл бұрын
Badia Bataya bro maza aa gya.
@roboticsmex78964 жыл бұрын
hello friend and if I want to receive a url of a video from an application and pass that url in my application to open with video, how would it be?
@BhavitBJ4 жыл бұрын
How did you create colors.xml (night) file??
@androidtutorials93284 жыл бұрын
See Step 3 here heartbeat.fritz.ai/adding-dark-mode-support-to-your-android-apps-7ee6a902165c
@igorduarte90484 жыл бұрын
Hello, you know how to do it exactly that way, but in the java language? And also use SharedPreferences because I have several activities and it would be good to save the theme when I close and exit the application. The application's home screen will not be the page that changes the theme. Can you help me with that?
@androidtutorials93284 жыл бұрын
The docs let you switch from Kotlin & Java. developer.android.com/guide/topics/ui/look-and-feel/darktheme#java For sharedPreferences, the current theme status will be an int. So you should be able to store it when user changes it in your setting page, and get it in all your pages. stackoverflow.com/questions/16194567/android-sharedpreferences-how-to-save-a-simple-int-variable
@igorduarte90484 жыл бұрын
@@androidtutorials9328 Sorry, I can't. I am very amateur in this. I wanted to use RadioGroup to: MODE_NIGHT_YES. MODE_NIGHT_NO. MODE_NIGHT_FOLLOW_SYSTEM. If the Android system is already in dark mode, it can only change my application to MODE_NIGHT_FOLLOW_SYSTEM and if you leave RadioButton activated with MODE_NIGHT_YES it will keep the application clear and when you open and open the new application, it will continue with the Android system in dark mode. When you put RadioGroup in an activity with the name "settings" for example, and there is an initial activity of the application that is not in the settings menu, and there are several activities.
@igorduarte90484 жыл бұрын
If you have a java application with two activities and the “settings” activity has “light”, “dark” and “current system color” modes and a main activity to start the application and when I close and open the application again it will keep the color I choose, it would help me a lot.
@androidtutorials93284 жыл бұрын
@@igorduarte9048 It might help if you got your code somewhere on GitHub or gist, as it would hard to debug or find issues through comments.
@igorduarte90484 жыл бұрын
@@androidtutorials9328 I put all my doubts on the link, if I can answer. I thank you very much. stackoverflow.com/questions/62452488/how-to-do-dark-mode-using-radiobutton-and-how-to-maintain-the-state-of-the-theme
@roshnibalasubramanian85124 жыл бұрын
Is there a way to share mp3 files directly from raw without writing them onto external storage first?
@androidtutorials93284 жыл бұрын
I don't believe so no. It needs to be stored on the phone and give the share permission to other apps.
@roshnibalasubramanian85124 жыл бұрын
@@androidtutorials9328 medium.com/androiddevelopers/sharing-content-between-android-apps-2e6db9d1368b They have mentioned that it is possible, however I am stuck up on the part to create a File object. Can you go through this and help me on what path to give in the constructor of File such that it references to the res/raw directory
@androidtutorials93284 жыл бұрын
There might be a hacky way of doing it, but the general path is to save it on phone first. stackoverflow.com/questions/46827950/how-to-share-audio-file-from-raw-folder-into-social-apps
@roshnibalasubramanian85124 жыл бұрын
@@androidtutorials9328 Got it, anyway, thank you!
@CeorNormal4 жыл бұрын
And if I want to open an excel file? Somebody could please tell me what can I do? I am almost two days trying that
@shriduttkothari4 жыл бұрын
Thanks 😊
@thomasdonzaala51724 жыл бұрын
Hello sir all works well but how can we go back to MainActivity from receive app activity say a, b, c
@androidtutorials93284 жыл бұрын
I think just hitting the back button should work. If you want to deep link, you would need to set something similar for the MainActivity, as we did for the A, B, C activities, and deep link into it from anywhere.
@thomasdonzaala51724 жыл бұрын
@@androidtutorials9328 Yes using back works fine but it seems to take you back the app from which the link was clicked instead of keeping you in the parent activity of same app.
@androidtutorials93284 жыл бұрын
I see what you mean. It that case you need the up button in your activity which will take you to a parent activity. stackoverflow.com/a/27282195
@PankajGupta-gh9cm4 жыл бұрын
Very helpful ..
@TechGamerzpro4 жыл бұрын
In tts how the audio file can be share Please make the video for this
@samuelwittlinger77904 жыл бұрын
Thank you so much I have not been able to find a working solution for sharing from resource files until now, you are a real life saver!
@Ok-Chance4 жыл бұрын
hello i have photos in a table , how can i share it , ty
@MrDaniexpert5 жыл бұрын
Hey sir thank you for your tutorial i found it very helpful but i have a question if its possible how can u create a deelink to open wuffy player directly for a video liink ??
@androidtutorials93285 жыл бұрын
Thanks man. You would need to use the package structure of the application to deep link into it. This is an example for a similar problem, but deep linking into Google maps. developers.google.com/maps/documentation/urls/android-intents
@raggedit92425 жыл бұрын
Thank you very much this helped me a lot :)
@artcodezen5 жыл бұрын
Thanks so much man, you saved my life. Your tutorial is very good, objective and simple.
@engosm20095 жыл бұрын
Thank you very much, for couple of days i am stuck in this matter.
@zakblacki5 жыл бұрын
Can you make video about OpenCV Android such Document Scan Using OCR and MRZ
@androidtutorials93285 жыл бұрын
That seems more of an OpenCV tutorial, but I could look into general text recognition with it.
@androidtutorials93285 жыл бұрын
After couple of requests, I have made another similar tutorial, but with audios (mp3) incase anyone is interested. kzbin.info/www/bejne/iqbceoqOoMiVsMU
@zakblacki5 жыл бұрын
How to choose Image to shre from gallery
@androidtutorials93285 жыл бұрын
@@zakblacki I have put this on my todo list to post a video of. Thanks For now try something like this: stackoverflow.com/questions/38352148/get-image-from-the-gallery-and-show-in-imageview
@harshbarnwal18795 жыл бұрын
thanks, worked like a charm
@HARVINDERSINGH-eu1bo5 жыл бұрын
font size is too large next time make it more smaller.....
@HARVINDERSINGH-eu1bo5 жыл бұрын
font size is too large next time make it more smaller.....
@RealMeenakshiDangi5 жыл бұрын
And in this showing - file format not supported. I am trying to share the clicked image. Kindly help.
@himanshukandwal87105 жыл бұрын
its because you were sharing a null file.
@RealMeenakshiDangi5 жыл бұрын
Thanks a lot... how to do it image from imageView?
@androidtutorials93285 жыл бұрын
You will have to save the file into the phones disk before being able to share it to other apps. If the image is loaded from the internet, you can just share the url to that image.
@juniorlanga45055 жыл бұрын
Thanks for the video, very helpful. But how do I share a picture from an ImageView ?
@androidtutorials93285 жыл бұрын
You will have to save the file into the phones disk before being able to share it to other apps. If the image is loaded from the internet, you can just share the url to that image.
@ramvilashkumar22555 жыл бұрын
How to implement it for those photo that are coming in the recyclerview from the net that are not stored in the drawable.Please make a video of it or code for it
@abhijeetsingh90835 жыл бұрын
it's show "the file format is not supported" on sharing with whatsapp and show "unable to attach file" on gmail
@zeta00845 жыл бұрын
Just want to say, thank you so much bro!
@RomanReigns-tg5qm6 жыл бұрын
why didn`t we use uri.parse()
@DjangoMx6 жыл бұрын
Hi there I'm using a file provider for take a picture from the camera an save it in the internal storage and everything works fine but when I make a little change to the code for save it the image in the private files of my app the image not is saved, I getting private files with getFilesDir(), one thing more that only happen in android KitKat because un higer version I can save the image in the last directory and everything works fine, do you have some idea about that wat happen?
@alexmanuele69836 жыл бұрын
Hi, the tutorial seems useful but the video resolution is too low to read the code (of course, github is provided, so thanks for that, but just some feedback)
@androidtutorials93285 жыл бұрын
Thank you, my new videos are in 4k. Made sure they are easy to read from the video.
@huseyintunc16956 жыл бұрын
How can we do it for audios (mp3) ? (Saving sd card codes)
@chandanaphere6 жыл бұрын
The font is too small for me to watch this on mobile.thanks for doing this but can you adjust the font size
@RestartWorld6 жыл бұрын
The code is available on Github.
@seemstwo89196 жыл бұрын
it's often more difficult to see these videos with the black backdrop
@1234zaptor6 жыл бұрын
Subscribed.. I just wanna ask is this the same as shareit function? if it does. well this is awesome!
@androidtutorials93286 жыл бұрын
shareit app? Sort of. But you would need like a bluetooth app to transfer offline.
@1234zaptor6 жыл бұрын
how about connecting hotspot?. is that possible? hope you can give me ideas on how to..
@androidtutorials93286 жыл бұрын
All this does is share files with other apps. If an app has capabilities of sharing files through bluetooth & hotspots, then yes you should be able to share it with those.