0% found this document useful (0 votes)
27 views2 pages

Android App Development Template

sn dne n ns nd c dnejndjkenckjnj

Uploaded by

a.k
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views2 pages

Android App Development Template

sn dne n ns nd c dnejndjkenckjnj

Uploaded by

a.k
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

MAD (CS347) Enroll No

“ THIS IS THE SAMPLE FORMAT OF TEMPLATE “

PRACTICAL: - 1
Program Definition: -

PROGRAMS

- activity_main.xml

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


<[Link]
xmlns:android="[Link]
xmlns:app="[Link]
xmlns:tools="[Link]
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</[Link]>

- [Link]
package [Link];

import [Link];

import [Link];

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
[Link](savedInstanceState);
setContentView([Link].activity_main);
}

1
MAD (CS347) Enroll No

OUTPUT
- Attach screenshot / only mobile or emulator screenshot paste here

You might also like