Vous êtes sur la page 1sur 5

Technological Institute of the Philippines

Electrical Engineering Department


ITE 002A Information Technology

Laboratory Experiment 3

Simple User Interface

Score

Student’s Name (LN, FN, MI) Lacorte, Lorenzo Luis M.


Date of Performance July 12, 2018
Date of Submission July 17, 2018
COURSE CODE / SECTION CODE ITE 002A / EE52FA1
Name of Instructor Dr. Enrique Festijo Ph.D
Signature of Instructor
Experiment No. 3
Simple UI
1. Objective(s):
The activity aims to use the basics of android programming in order to build or create an android application.
2. Intended Learning Outcomes (ILOs):
The students shall be able to:
2.1 Use the fundamentals of android programming
2.2 Run the apk of the Android program in a real android device
3. Discussion:
Android software development is the process which a new applications are created for the Android
operating system. Applications are usually developed in Android Studio using the Android software
development kit (SDK).
4. Source code

<?xml version="1.0" encoding="utf-8"?>


<android.support.constraint.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=".Lacorte_SimpleUI">

<EditText
android:id="@+id/editText2"
android:layout_width="208dp"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/send_message"
android:inputType="textPersonName"
app:layout_constraintEnd_toStartOf="@+id/button"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="16dp" />

<Button
android:id="@+id/button"
android:layout_width="154dp"
android:layout_height="wrap_content"
android:text="@string/send_button"
app:layout_constraintBaseline_toBaselineOf="@+id/editText2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintStart_toEndOf="@+id/editText2" />

</android.support.constraint.ConstraintLayout>
5. GUI Layout

6. Application Testing
7. Conclusion:

Vous aimerez peut-être aussi