0% found this document useful (0 votes)
23 views

Totu3-Android Button Example Adding Numbers

Uploaded by

Thant Thant
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views

Totu3-Android Button Example Adding Numbers

Uploaded by

Thant Thant
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

Android Button Example - javatpoint https://www.javatpoint.

com/android-working-with-button

Android Button Example


Android Button represents a push-button. The android.widget.Button is
subclass of TextView class and CompoundButton is the subclass of Button
class.

There are different types of buttons in android such as RadioButton,


ToggleButton, CompoundButton etc.

Android Button Example with Listener


Here, we are going to create two textfields and one button for sum of two
numbers. If user clicks button, sum of two input values is displayed on the
Toast.

We can perform action on button using different types such as calling listener on button or adding onClick
property of button in activity's xml file.

2 of 9 31/10/2020, 4:19 pm
Android Button Example - javatpoint https://www.javatpoint.com/android-working-with-button

Drag the component or write the code for UI in activity_main.xml

First of all, drag 2 textfields from the Text Fields palette and one button from the Form Widgets palette as
shown in the following figure.

The generated code for the ui components will be like this:

File: activity_main.xml

3 of 9 31/10/2020, 4:19 pm
Android Button Example - javatpoint https://www.javatpoint.com/android-working-with-button

Activity class

Now write the code to display the sum of two numbers.

File: MainActivity.java

4 of 9 31/10/2020, 4:19 pm
Android Button Example - javatpoint https://www.javatpoint.com/android-working-with-button

Output:

5 of 9 31/10/2020, 4:19 pm
Android Button Example - javatpoint https://www.javatpoint.com/android-working-with-button

For Videos Join Our Youtube Channel: Join Now

Help Others, Please Share

6 of 9 31/10/2020, 4:19 pm

You might also like