Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

To design an android application to display Hello World, Assignments of Mobile Communication Systems

Understanding and analyze the specific requirements, possibilities and challenges when developing for a mobile application context

Typology: Assignments

2022/2023

Uploaded on 04/07/2023

qwerrtyhgf
qwerrtyhgf 🇮🇳

2 documents

1 / 5

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
DEPARTMENT OF
COMPUTER SCIENCE &
ENGINEERING
EXPERIMENT
1.2
Student Name: Anshul UID: 20BCS5055
Branch: BE-CSE Section: 20BCS_NTPP_DM_604/B
Semester: 6th Date of Performance: 16-02-2023
Subject Name: Mobile Application Development Lab
Subject Code: 20CSP-356
1. AIM: To design an android application to display Hello World.
2. THEORY:
Android is an open-source mobile operating system developed by Google. It
is designed primarily for touchscreen mobile devices such as smartphones and
tablets, but it can also be used on other types of devices such as smartwatches,
televisions, and cars. Android is based on the Linux kernel and provides a
framework that allows developers to create applications and services that can
run on Android-powered devices.
Android has a user-friendly interface with a variety of features such as
customizable home screens, support for widgets, and a wide range of apps
available on the Google Play Store. It also includes built-in security features
such as application sandboxing and the ability to control app permissions.
Android Studio is the name of the official Integrated Development
Environment (IDE) for building Android applications. Android Studio, which
is based on the robust code editor and developer tools from IntelliJ
IDEA, offers additional features that increase your efficiency when creating
Android apps, such as:
A flexible Gradle-based build system
A fast and feature-rich emulator
A unified environment where you can develop for all Android devices
Apply Changes to push code and resource changes to your running app
without restarting your app
Code templates and GitHub integration to help you build common app
pf3
pf4
pf5

Partial preview of the text

Download To design an android application to display Hello World and more Assignments Mobile Communication Systems in PDF only on Docsity!

COMPUTER SCIENCE &

ENGINEERING

EXPERIMENT 1.

Student Name: Anshul UID: 20BCS Branch: BE-CSE Section: 20BCS_NTPP_DM_604/B Semester: 6th^ Date of Performance: 16-02- Subject Name: Mobile Application Development Lab Subject Code: 20CSP-

  1. AIM: To design an android application to display Hello World. 2. THEORY: Android is an open-source mobile operating system developed by Google. It is designed primarily for touchscreen mobile devices such as smartphones and tablets, but it can also be used on other types of devices such as smartwatches, televisions, and cars. Android is based on the Linux kernel and provides a framework that allows developers to create applications and services that can run on Android-powered devices. Android has a user-friendly interface with a variety of features such as customizable home screens, support for widgets, and a wide range of apps available on the Google Play Store. It also includes built-in security features such as application sandboxing and the ability to control app permissions. Android Studio is the name of the official Integrated Development Environment (IDE) for building Android applications. Android Studio, which is based on the robust code editor and developer tools from IntelliJ IDEA, offers additional features that increase your efficiency when creating Android apps, such as:  A flexible Gradle-based build system  A fast and feature-rich emulator  A unified environment where you can develop for all Android devices  Apply Changes to push code and resource changes to your running app without restarting your app  Code templates and GitHub integration to help you build common app

COMPUTER SCIENCE &

ENGINEERING

features and import sample code  Extensive testing tools and frameworks  Lint tools to catch performance, usability, version compatibility, and other problems

3. STEPS TO CREATE A “HELLO WORLD” APPLICATION: i) System Requirements: The open-source software needed to create Android applications is available online for download. The list of software that you will require before you begin developing Android applications is provided below.  Java JDK5 or later version.  Java Runtime Environment (JRE) 6  Android Studio ii) Program: package com.example.myapplication; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity{ @Override protected void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } }

COMPUTER SCIENCE &

ENGINEERING

DEPARTM

COMPUTER SCIENCE & ENGINEERING