Answered step by step
Verified Expert Solution
Question
1 Approved Answer
please make this code with java language in android studio. 1. With the knowledge of using basic view types like image views, text views and
please make this code with java language in android studio.
1. With the knowledge of using basic view types like image views, text views and button views, you are required to create a currency converter app that will convert an amount given in dollars to Indian rupees. Use some image to give an attractive look to your app. Use a text field where a user can input amount in dollars. Create a button, on clicking which a toast should appear showing the amount in INR. Find the current conversion rate online. You may require to convert a number string into double, use: double num=Double.parseDouble(numstr); you may also need to convert double back to the string; use: String strnum=Double.toString(numdouble). In case you need to specify a string number rounded to 2 places after decimal; use String strnum = String.format(%.2f,numberindouble)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started