Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

MAD ( MOBILE APPLICATION DEVELOPMENT )

SUBJECT CODE :- (22617)

Branch : (CO6I) Semester :6 TH

TITLE:

CURRENCY CONVERTER

MICRO PROJECT REPORT BASED ON

Sr Name of Student Roll Enrollment


.no No. No.
1) Archi Akhade 3502 2001460148
2) Sarvesh Chavan 3504 2001460145

3) Kunal Shinde 3536 2001460144


4) Yash Tangdi 3543 2001460132

Submitted on / /2023 by the group of 4 students

Under the guided by


Mrs. ANUPAMA NAIR
Third Year Diploma Program in Information Technology of Maharashtra
State Board of Technical Education, Mumbai

ISO 9001:2008 (ISO/IEC-27001:2013)

At

0146 MUCHHALA POLYTECHNIC THANE.


PART PLAN : A

Title: Currency Converter.

Brief Introduction:-
1. Understanding the different concepts of advance java
programming.
2. A comparative study of the software java helps in
understanding the usage of java in different scenario..

AIM Of Microproject :

This micro project aims at:

1.The main Objective of this microproject is to develop an


Admission form.

2. It contains different concepts like personal details and


qualification.

3. This project makes use of various concepts of advance java


programming language

2
Action Plan :

Planned Name of the


Sr. Planned
Details of activity Finished responsible team
No. Start Date
Date members
Archi Akhade
Sarvesh Chavan
1 Group formation. 6/2/23 17/2/23 Kunal Shinde
Yash Tangdi

Archi Akhade
Understanding basic Sarvesh Chavan
2 20/2/23 4/3/23 Kunal Shinde
concepts
Yash Tangdi

Understanding the Archi Akhade


Protocols and Clients and Sarvesh Chavan
3 6/3/23 18/3/23 Kunal Shinde
servers and communication Yash Tangdi
between them.
Archi Akhade
Collection of data from Sarvesh Chavan
4 20/3/23 25/3/23 Kunal Shinde
different resources.
Yash Tangdi

Archi Akhade
Collection of data from Sarvesh Chavan
5 27/3/23 1/423 Kunal Shinde
different resources.
Yash Tangdi

Archi Akhade
Sarvesh Chavan
6 Organize the information. 3/4/33 8/4/23 Kunal Shinde
Yash Tangdi

Archi Akhade
Sarvesh Chavan
7 Create reports 10/4/23 15/4/23 Kunal Shinde
Yash Tangdi

Archi Akhade
17/4/23 29/4/23 Sarvesh Chavan
8 Submission of micro project Kunal Shinde
Yash Tangdi

3
PART PLAN : B

TITLE: CURRENCY CONVERTER .

Brief Introduction:
1. Understanding the different concepts of advance java
programming.
2. A comparative study of the software java helps in understanding
the usage of java in different scenario.

AIM Of Microproject :
This micro project aims at:

1.The main Objective of this microproject is to develop an


Admission form.

2. It contains different concepts like personal details and


qualification.

3. This project makes use of various concepts of advance java


programming language

COURSE OUTCOME INTEGRATED:

An Application was developed using ANDROID STUDIO


Named Currency Converter.

5
ACTUAL PROCEDURE FOLLOWED:

GROUP INFORMATION:
The basic aim of project is to create a team spirit, and divide the work
among fellow students. In the first week July the subject was
introduced. The groups were formed and topics were assigned.

FINILIZATION OF MICROPROJECT:
After some time we were able to select a topic by the help of our
teacher implementing the concepts taught to us. The group leader
individually tried explaining a few points to us regarding the above.

PLANNING:
After finalizing the project we started working on the project. We
discussed regarding the software to be used and tasks to be handled
by each. In this week we started working on our part A of our plan.

MODULE DISTRIBUTION AND ANALYSIS PART:


Once the methodology part was done, we finalized the module which
we will be designing. We collected some information and distributed
among our members.

DESIGN PART:
In this section we created the code and output for our micro project.
By doing this we were clearer of the project.

6
IMPLEMENTATION: -
During this week we started the technical phase. Coding for each part
of module was done. The testing of coding was done to get the desired
outcome. The project was ready within the given time period.

PRESENTATION:
During this week we presented our project in front of our teacher. She
asked us various question regarding the functions implemented in
our program and suggested some changes needed.

SUBMISSION:
This was the submission week. We had to submit our micro project to
the guide.

Program:
.xml file:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="450dp"
android:background="#090909"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:layout_marginTop="35dp"
android:text="Currency Converter"
android:textColor="#FFFFFF"
7
android:textSize="40dp"
android:textStyle="bold" />

<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:layout_marginTop="20dp"
android:text="Enter the amount:"
android:textColor="#848484"
android:textSize="23sp" />

<EditText
android:id="@+id/editTextNumber"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="25dp"
android:layout_marginTop="10dp"
android:layout_marginRight="25dp"
android:background="#FFFFFF"
android:ems="10"
android:inputType="number"
android:textSize="40sp" />

<TextView
android:id="@+id/textView5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:layout_marginTop="10dp"
android:text="Entered amount is in ₹(Ruppes)."
android:textColor="#FFFFFF"
android:textSize="15sp" />

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:layout_marginTop="20dp"
android:layout_marginRight="25dp"
android:backgroundTint="#FFFFFF"
android:onClick="sri"
android:text="Convert"
android:textColor="#000000"
android:textSize="24sp"
app:cornerRadius="10sp" />

<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="25dp"
android:layout_marginTop="12dp"
android:layout_marginRight="25dp"
android:backgroundTint="#9B9B9B"
android:text="CLEAR"
android:textSize="24sp"
app:cornerRadius="10dp" />

</LinearLayout>

<TextView
android:id="@+id/textView8"
android:layout_width="wrap_content"
8
android:layout_height="wrap_content"
android:layout_marginTop="17dp"
android:text="Countries"
android:textColor="#000000"
android:textSize="35sp"
android:textStyle="bold"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.035"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout" />

<ImageView
android:id="@+id/imageView2"
android:layout_width="150dp"
android:layout_height="85dp"
android:layout_marginTop="32dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.044"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView8"
app:srcCompat="@drawable/flag2" />

<ImageView
android:id="@+id/imageView3"
android:layout_width="150dp"
android:layout_height="85dp"
android:layout_marginTop="28dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.036"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView2"
app:srcCompat="@drawable/flag3" />

<TextView
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="132dp"
android:textSize="20sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.209"
app:layout_constraintStart_toEndOf="@+id/imageView2"
app:layout_constraintTop_toBottomOf="@+id/linearLayout" />

<TextView
android:id="@+id/textView10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="88dp"
android:textSize="20sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.217"
app:layout_constraintStart_toEndOf="@+id/imageView3"
app:layout_constraintTop_toBottomOf="@+id/textView9" />
</androidx.constraintlayout.widget.ConstraintLayout>

9
Outputs of the Micro-Projects:

Resources Required:

Sr. Name of the Specifications Qty. Remarks


No. Resources Used

1. Hardware: Computer Computer (AMD RYZEN


System 9),
16 GB RAM
2. Operating System Windows 11
3. Software MS Word, Cisco Packet
tracer
11

You might also like