You are on page 1of 1

Practical 1

Aim: Create an application with the following functionalities:


Print and show a simple message
e.g. Hello World
Procedure:
XML Code:

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


<LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent" android:orientation="horizontal"
xmlns:android="http://schemas.android.com/apk/res/android" >

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="sans-serif"
android:text="Hello World"
android:textAlignment="center"
android:textAllCaps="true"
android:textColor="@color/colorPrimary"
android:textFontWeight="900"
android:textSize="50dp"></TextView>
</LinearLayout>

You might also like