Home Android Studio Employee Salary Calculation in Android Studio

Employee Salary Calculation in Android Studio

10 min read
0
0
1,182

This tutorial will teach you  to calculating the employee salary.Input the employee name and the basic salary calculate and display the netsalary using following condition.

  • if the basic salary is more than 50000 then include 10% tax.
  • if the basic salary is more than 30000 then include 5% tax.
  • otherwise no tax.

Design the UI Design

Android studio folder structure there is folder which is res this is the folder will help us to make a UI Design of the App.inside res folder you can see the layout folder if you expand the layout folder there is a file
activity_main.xml
in this file we will design App Layout i have design the registration UI design below.

activity_main.xml

Inside the Value Folder we have to Make the App Style.

colors.xml

strings.xml

Load More Related Articles
Load More By admin
Load More In Android Studio

Leave a Reply

Your email address will not be published.

Check Also

Node js React Mongodb Search Functionality

In this articles will teach how to search records Node js React Express Mongodb.how the se…