android activity, service, and broadcast recievers

19
1

Upload: utkarsh-mankad

Post on 10-May-2015

4.569 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Android activity, service, and broadcast recievers

1

Page 2: Android activity, service, and broadcast recievers

Hello Android

1. Create a new project by – file -> New Project -> Android Project.2. Enter the details -

Project Name – HelloWorldBuild Target – Android 2.2 (API 8)Application Name – Hello AndroidPackage name – cdac.android.helloworldActivity name – HelloWorldActivity

3. Click o finish, and wait for the project to be created.4. The build your project.5. Then click o the play icon In the taskbar on the top, or right click on the project

folder In the workspace, and then select – android application6. Select the AVD corresponding to the build target, and then wait for the

emulator to load

2

Page 3: Android activity, service, and broadcast recievers

New Project

Select AVD

3

Page 4: Android activity, service, and broadcast recievers

Understanding Hello worldAndroid Project file structure

Project Name

1.Src2.Gen3.Android version Libraries4.Assets5.Res

- drawable-hdpi-drawable-ldpi-drawable-mdpi-layout-values

6.AndroidManifest.xml7.Default.properties

4

Page 5: Android activity, service, and broadcast recievers

Brief Description about the Folders

Src an assets folder

This src folder, contains the actual source code

Res and assets folder

The Resource aka res folder, contains all the resource files which are divided into generally 5 folders

a. drawable – hdpib drawable – ldpic. drawable – mdpid. layoute. values

Apart from all other files are added to the assets folder like java projects,

5

Page 6: Android activity, service, and broadcast recievers

The gen folder

The gen folder contains the file R.java.This file is auto generatedR.Java contains set of unique precompiled IDs assigned to every resource in the res folder.

The default.properties file

This file generally contains the information regarding the version of Android used to make the application. But, in order to specify or change the build environment or parameters we’ll modify this file

6

Page 7: Android activity, service, and broadcast recievers

AndroidManifest. xml

The manifest lets you define the structure and metadata of your application, its components, and its requirements.

Breaking down

1. Activity tag – To describe any new activity in the application

2. Application, intent-filter tag

<application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".DatePickerActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>

7

Page 8: Android activity, service, and broadcast recievers

3. Android Permissions (uses-application tag)

The Android permissions are the set of hardware/software permissions to be taken by the current application.

<uses-permission android:name="android.permission.INTERNET" />

8

Page 9: Android activity, service, and broadcast recievers

Android Activity

An Activity is an application component that provides a screen with which users can interact in order to do something, such as dial the phone, take a photo, send an email, or view a map.

The very first step in developing an Android application is making a ActivityYour application must have at least one Activity.

9

Page 10: Android activity, service, and broadcast recievers

Importance of Activity

An activity is a single, focused thing that the user can do. Almost all activities interact with the user, so the Activity class takes care of creating a window for you in which you can place your UI .

While activities are often presented to the user as full-screen windows, they can also be used in other ways: as floating windows or embedded inside of another activity (using ActivityGroup).

10

Page 11: Android activity, service, and broadcast recievers

Creating an Activity

To create an activity, you must create a subclass of Activity (or an existing subclass of it). In your subclass, you need to implement the most important callback methods are:

onCreate()The system calls this when creating your activity.

Most importantly, this is where you must call setContentView() to define the layout for the activity's user interface.

onPause()This is usually where we should commit any changes that should be persisted beyond the current user session (because the user might not come back).

11

Page 12: Android activity, service, and broadcast recievers

Dissection of an Activity

Some of the important overridden methods in the Activity Class1.onStart();2.onRestart();3.onResume();4.onPause();5.onStop();6.onDestroy();7.void finish();8.void finishActivity(int requestCode);9.setContentView(int layoutResID);10.void setTitle(CharSequence title)11.startActivity(Intent intent)12.setIntent(Intent newIntent)13.View findViewById(int id) ;14.PendingIntent createPendingResult(int requestCode, Intent data, int flags);15.Boolean onKeyEvent(KeyEvent event);16.boolean onTouchEvent(MotionEvent ev);17.boolean onTrackballEvent(MotionEvent ev);

12

Page 13: Android activity, service, and broadcast recievers

1. LayoutInflater getLayoutInflater()2. WindowManager getWindowManager()3. Window getWindow()4. Dialog onCreateDialog(int id)5. boolean onCreatePanelMenu(int featureId, Menu menu)6. View onCreatePanelView(int featureId)7. Boolean onCreateThumbnail(Bitmap outBitmap, Canvas canvas)8. View onCreateView(String name, Context context, AttributeSet attrs)9. boolean onMenuItemSelected(int featureId, MenuItem item)10. startSearch(String initialQuery, boolean selectInitialQuery,Bundle appSearchData,

boolean globalSearch)11. startIntentSender(IntentSender intent, Intent fillInIntent,int flagsMask, int

flagsValues, int extraFlags)12. boolean startActivityIfNeeded(Intent intent, int requestCode)

13

Page 14: Android activity, service, and broadcast recievers

Activity Life Cycle

14

Page 15: Android activity, service, and broadcast recievers

Summary of Activity Life cycle

15

Page 16: Android activity, service, and broadcast recievers

Android Service

A Service is an application component that can perform long-running operations in the background and does not provide a user interface.

Additionally, a component can bind to a service to interact with it and even perform interprocess communication (IPC).

16

Page 17: Android activity, service, and broadcast recievers

Broadcast Receivers

A broadcast receiver is a class which extends "BroadcastReceiver" and which is registered as a receiver in an Android Application via the AndroidManifest.xml (or via code). This class will be able to receive intents via the sendBroadcast() method.

Broadcast receiver is a component that responds to system-wide broadcast announcements

17

Page 18: Android activity, service, and broadcast recievers

18

References

1. http://developer.android.com/reference/android/app/Activity.html2. http://developer.android.com/reference/android/app/Service.html3. http://developer.android.com/reference/android/content/BroadcastReceiver.html

Page 19: Android activity, service, and broadcast recievers

19