Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1) See the attached image resources as guide. 2) Create Layout: name: activity_arithmetic.xml Then follow the image below to design the UI layout. After you

1) See the attached image resources as guide.

2) Create Layout:

name: activity_arithmetic.xml

Then follow the image below to design the UI layout. After you design this UI layout.

3) Modify the Activity class.

Create a java code based on the following task:

Create new method for each arithmetic operation. This method accepts two integer operands, and return the result of the operation.

Example:

Sample Addition method:

int add(int num1, int num2) {

return num1 + num2;

}

The input values to be used for the method will come from the values from num1 and num2 of XML layout

(Example values in the sample layout: num1=8, num2=2)

The result of the operation will be displayed to the Addition text view.

Create a method also for other arithmetic operations (subtraction, division, multiplication)

See the image below as guide in creating the java code.

Note:

You may use either findViewById() or View Binding method

Use the built-in setText() method of the TextView or EditText component to set the value.

Uset the built-in getText() method of the TextView or EditText component to get the value.

4.) Add the button with label "Click".

When you click the "Click"button, it will automatically perform the arithmetic operation and display the corresponding output in UI based on the values inputted to num1 and num2 fields.

image text in transcribed

num1: 8 num2: 2 Result: Addition: 10 Subtraction: 6 Division: 4 Multiplication: 16

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Essential SQLAlchemy Mapping Python To Databases

Authors: Myers, Jason Myers

2nd Edition

1491916567, 9781491916568

More Books

Students also viewed these Databases questions

Question

What does Processing of an OLAP Cube accomplish?

Answered: 1 week ago