hy nice video love that and keep up vish you very best
@anilmohite96953 жыл бұрын
Hello mam, I ve added button to MainActivity on click, we go into settings_Activity, There I've switch button which changes dark/light mode. The problem is it changes dark/light mode of only settings_Activity does not change of MainActivity and other activities, soln please mam, am stuck here.
@ankitpareek85144 жыл бұрын
is your api is working only for the USD endpoint, like i want to get the data for INR base ?
@codeboba4 жыл бұрын
Hi, surely you can. INR is already there in the drop-down in my video. You just need to choose INR from drop-down instead of USD and convert accordingly.
@ankitpareek85144 жыл бұрын
@@codeboba Ok this works good on my project also and your video helps me alot❤️
@codeboba4 жыл бұрын
Thanks, your positive comments help me too 🙂
@ankitpareek85144 жыл бұрын
@@codeboba please try to make video on Android database connectivity i am very much looking forward to it🙏👍
@codeboba4 жыл бұрын
@@ankitpareek8514 I will surely take your point to account when I get back to video making.
@coreeye76113 жыл бұрын
I added Flag image to spinner, How ever when I click on convert Button , app crashes. how can I get only text value to be converted.
@codeboba3 жыл бұрын
You will have to assign its corresponding test in another array and map the position of the selected image. Hope this helped.
@butters0y4 жыл бұрын
Im currently learning Information Science in Japan. You helped me so much regarding to API application to Android app. Subscribeddddd
@codeboba4 жыл бұрын
Hey! Thank you so much. You made my day🙂
@ikranurakdogan5634 жыл бұрын
when i click the button, it does not work. and it is coming back activity page. In onClick method and onFailure method, Toast message is running. But in onResponse method, Toast message isn't running. Please help me, thanks..
@codeboba4 жыл бұрын
Hi, you can have a look at the git code and compare your code with mine and check where can be the possible issue. I have given the link in the description.
@naziyapatel61412 жыл бұрын
Hi In JsonObject and Ratriofit problem is occurred how I fix it? Please help me I heve to make this app for micro project. Please reply & solve this problem
@bhargavaramkatta97212 жыл бұрын
hey, hi mam it was really helpful but how do i add all countries currencies and their conversion to this project can u help me with this........
@MegaJoGamer2 жыл бұрын
Hello, What must I do if I cannot find a working api for unit conversion?
@codeboba2 жыл бұрын
Hey! You can calculate it yourself too. Here I just demonstrated how to use apis.
@coreeye76113 жыл бұрын
Voice is sweet and content 👌. Subscribed
@codeboba3 жыл бұрын
Thanks 😊
@panditonrocks31164 жыл бұрын
What is your android studio version??
@codeboba4 жыл бұрын
Version 3.5
@jdpatel94423 жыл бұрын
I have an error in call.enqueue , Can you please tell me how to solve it?
@codeboba3 жыл бұрын
Hi! Can you show the logs from the debug window?
@pujadhar89084 жыл бұрын
I have added your code and have done everything like dependencies and all everything....but when i run the app nothing shows up
@codeboba4 жыл бұрын
Hi! Have you checked the debug window?on the bottom left of the screen.
@coreeye76113 жыл бұрын
How can I save. Value for offline usage
@codeboba3 жыл бұрын
For offline you can use Shared Preferences
@jandros54914 жыл бұрын
Hey, can you explain how to add the retrofit?
@codeboba4 жыл бұрын
Hi, just add the dependencies and follow the tutorial. Let me know in which step you are getting stuck.
@mohammadsanchooli25564 жыл бұрын
Hi dear thank you for Tutorial I get an PARSE ERROR when I run your code How to fix it؟
@codeboba4 жыл бұрын
Hey, thanks for raising this. Were you able to debug it and see where you can go wrong?
@okepaul85094 жыл бұрын
Does the app get real time exchange rates online?
@codeboba4 жыл бұрын
Hi, thanks for the question. The api that I am using is a public api and the data totally depends on their server. If they keep on updating their server then you are lucky, if not then maybe there are paid APIs for that. You have to do some research.
@okepaul85094 жыл бұрын
@@codeboba thanks
@santhoshmanoharan89693 жыл бұрын
In Mainactivity.java this line " Call " is showing error for me
@codeboba3 жыл бұрын
Hi, did you integrated retrofit library?
@santhoshmanoharan89693 жыл бұрын
@@codeboba can you mention the time in the video where you integrate.
@codeboba3 жыл бұрын
In the beginning of the video itself : 0:58
@aniketshinde41143 жыл бұрын
It's not showing result, please reply I have this as my project
@codeboba3 жыл бұрын
Please download the git project given in the description and compare where you could have gone wrong.
@vamsikrishnanouluri9723 жыл бұрын
app was unable to launch. it is saying that "app keeps stoping"
@codeboba3 жыл бұрын
Can you tell me the logs? It will be shown in the debug window
@Palifico184 жыл бұрын
Amazing, but how can I change the abbreviation to real name? Like GBP --> Great Britain Pound per example. Thankss
@codeboba4 жыл бұрын
Hey, thanks! The easy way would be to add a dictionary with key being GBP and value being Great Britain Pound. Add in for the rest of the abbreviations you want and that's it. Print it out accordingly.
@Palifico184 жыл бұрын
@@codeboba Thanks, I never heard before about Dictionary, do you have some link or info about it? I dont found anything in Google, thanks!!
@codeboba4 жыл бұрын
You can search dictionary in android studio, you should get examples. You you can follow me on instagram, I post stories there to questions.
@caesarquek3 жыл бұрын
Hi you are great, im a beginner and i have learned a lot from you. But i hope you can show us your Json object in this video. Because when i test to run your code, i believe that it doesn't parse to the json object to show the rates. Thanks!
@codeboba3 жыл бұрын
Hi Quek, thanks. I have just recently checked my git code, and the project still works, can you download the project from git url in my description and check what is the difference. You can also debug using Log.d() and print out the areas where you would want to see the data. Hope this helps. Let me know if you face any issue.
@parthpandya29094 жыл бұрын
onFailure method is being executed instated of onResponse
@codeboba4 жыл бұрын
OnFailure method usually gets triggered when you have not added the right details for the api, or when the server is down, or when the internet is off. Have a look at these.
@emilundo24613 жыл бұрын
It crashs everytime, i have the same code..
@codeboba3 жыл бұрын
Did you download from the git url I provided in description and checked if that is working?
@mittsejl4 жыл бұрын
Why did you leave out that crucial part where to get and add the decencies implemented in GRADLE. Why do people do that they give a tutorial and leave crucial things out? It won't work w/o that so it's important to include it. Right?
@codeboba4 жыл бұрын
Hi, it is in the description dear.🙂
@RiteshSingh-nv8cv3 жыл бұрын
TYSM 😊
@codeboba3 жыл бұрын
You are welcome
@nomanahmad30574 жыл бұрын
TYSM
@codeboba4 жыл бұрын
Glad to help 🙂
@sonishmagar3 жыл бұрын
App crashed!!
@codeboba3 жыл бұрын
Can you tell me what is the error?or where it crashed?
@sonishmagar3 жыл бұрын
@@codeboba at the end point!!! entry name 'res/animator/linear_indeterminate_line1_head_interpolator.xml' collided Message popped while exporting on APK.. App crashed on while clicking on Convert button.. hope you understand
@codeboba3 жыл бұрын
Can you download the repo from the git url I provided in the description and check if that is working for you?
@codeboba3 жыл бұрын
@@sonishmagar also did you provide internet permission in manifest file?
@rxtechandtrading4 жыл бұрын
you are not providing good instruction..You forgot to instruct us on how to build a vital component of this app..the JASONobject.java file !!!!!!!!!!!!!!!!!!!!!!!
@codeboba4 жыл бұрын
Hi, can you show me where have I mentioned regarding the java file that you are talking about? And how have you come across this file?
@rxtechandtrading4 жыл бұрын
ummmmm lets c..the one thats displayed on your screen as a tab but never opened..!!! JASONobject.java... review ur own video and u will c
@codeboba4 жыл бұрын
This file is not used anywhere, maybe some pre build file, but don't worry about it.
@rxtechandtrading4 жыл бұрын
@@codeboba i copied your code exactly ..and i does not work!!!!! i dunno..you must have forgot something
@rxtechandtrading4 жыл бұрын
@@codeboba make a video on how to fix this problem for us
@rxtechandtrading4 жыл бұрын
i dont think u really know how to teach that effectively..like most women