Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sudarika/basic-calculator

This is a basic calculator application for Android, built using Kotlin. The app allows users to perform simple arithmetic operations by entering two numbers and selecting the desired operation.
https://github.com/sudarika/basic-calculator

android-application android-studio calculator-application kotlin

Last synced: about 1 month ago
JSON representation

This is a basic calculator application for Android, built using Kotlin. The app allows users to perform simple arithmetic operations by entering two numbers and selecting the desired operation.

Awesome Lists containing this project

README

        

# Basic Calculator App

A simple Android calculator app that performs basic arithmetic operations: addition, subtraction, multiplication, and division.

## Table of Contents

- [Introduction](#introduction)
- [Features](#features)
- [Installation](#installation)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)

## Introduction

This is a basic calculator application for Android, built using Kotlin. The app allows users to perform simple arithmetic operations by entering two numbers and selecting the desired operation.

## Features

- Addition
- Subtraction
- Multiplication
- Division

## Installation

- Clone this repository to your local machine.
- Open the project in Android Studio.
- Build the project to download the necessary dependencies.
- Run the app on an Android device or emulator.

## Usage

Enter the numbers:
- Enter the first number in the edtNumber1 input field.
- Enter the second number in the edtNumber2 input field.

Select the operation:
- Click on the + button to add the numbers.
- Click on the - button to subtract the second number from the first number.
- Click on the * button to multiply the numbers.
- Click on the / button to divide the first number by the second number.

View the result:
- The result of the selected operation will be displayed as a Toast message.