Presentation is loading. Please wait.

Presentation is loading. Please wait.

App Development for Android Prabhaker Mateti. Development Tools (Android) Java – Java is the same. But, not all libs are included. – Unused: Swing, AWT,

Similar presentations


Presentation on theme: "App Development for Android Prabhaker Mateti. Development Tools (Android) Java – Java is the same. But, not all libs are included. – Unused: Swing, AWT,"— Presentation transcript:

1 App Development for Android Prabhaker Mateti

2 Development Tools (Android) Java – Java is the same. But, not all libs are included. – Unused: Swing, AWT, SWT, lcdui Eclipse www.eclipse.org/www.eclipse.org/ ADT Plugin for Eclipse developer.android.com/developer.android.com/ Android SDK developer.android.com/developer.android.com/ Android Device Emulator Development Platforms: Linux, Mac OSX, or Windows 2Mateti/Android

3 (Other) Languages and IDEs IntelliJ Idea Android Studio Corona for Android Android Native Development Kit (NDK) Scala 3Mateti/Android

4 Application Runtime Each application is a different “user”. Each application gets a unique Linux user ID. The system sets permissions for all the files in an application so that only the user ID assigned to that application can access them. Each process has its own Dalvik/Art VM. Every application runs in its own Linux process. A process can have multiple threads. 4Mateti/Android

5 Application Framework Views lists, grids, text boxes, buttons, embeddable web browser Views Content Providers to access data from other applications, or to share their own data Content Providers Resource Manager access non-code resources; e.g., strings, graphics, and layout files Resource Manager Notification Manager alerts in the status bar Notification Manager Activity Manager lifecycle of applications and navigation backstack Activity Manager 5Mateti/Android

6 Application Components Activity: (GUI) functions that the application performs. Service: no UI – run in the background; Long-running; for remote processes – no user interface. Content Providers facilitate data transmission among different applications. Broadcast Receiver: respond to announcements. Groups of views define the application’s layout. Each component is a different entry point of the system. An application can have multiple instances of the above. 6Mateti/Android

7 Activity An application typically consists of several screens: – Each screen is implemented by one activity. – Moving to the next screen means starting a new activity. – An activity may return a result to the previous activity. 7Mateti/Android

8 Activity One of the activities is marked as the main one. Presented on launch. An activity is usually a single screen: – Implemented as a single class extending Activity. – Displays user interface controls (views). – Reacts on user input/events. 8Mateti/Android

9 Life cycle of an Activity 9Mateti/Android

10 Services A service does not have a (visual) user interface. Runs in the background for an indefinite period time. – Examples: music player, network download, … Similar to daemons in Linux/Unix or Windows services. Each service extends the Service base class. Communicate with the service through an interface defined in AIDL (Android Interface Definition Language). 10Mateti/Android

11 Services Interprocess communication (IPC). startService(); stopSelf() ; stopService() startService()stopSelf()stopService() bindService(). Multiple components can bind to the service at once. When all of them unbind, the service is destroyed. bindService() onStartCommand() onBind() onCreate() onDestroy() 11Mateti/Android

12 Broadcast Receivers Broadcast announcements: Intents. All receivers extend the BroadcastReceiver base class. Many broadcasts originate in the System. – Ex: the time zone has changed – Ex: the battery is low Applications can also initiate broadcasts. 12Mateti/Android

13 Content Providers Enables sharing of content across applications – E.g., address book, photo gallery – the only way to share data between applications. APIs for query, delete, update and insert. Use ContentResolver methods to do the above. Content is represented by URI and MIME type. 13Mateti/Android

14 Content Providers 14Mateti/Android

15 Intent Examples ACTION_DIAL content://contacts/people/13 ACTION_DIAL – Display the phone dialer with the person #13 filled in. ACTION_VIEW content://contacts/people/ ACTION_VIEW – Display a list of people, which the user can browse through. startActivity(new Intent(Intent.VIEW_ACTION, Uri.parse( "http://www.fhnw.ch")); startActivity(new Intent(Intent.VIEW_ACTION, Uri.parse("geo:47.480843,8.211293")); startActivity(new Intent(Intent.EDIT_ACTION, Uri.parse("content://contacts/people/1")); attributes: category, type, component, extras 15Mateti/Android

16 Intent Intents are system messages: – Activity events ( launch app, press button) – Hardware state changes (acceleration change, screen off, etc) – Incoming data (Receiving call, SMS arrived) An intent object is an action to be performed on some data URI. Provides binding between applications.URI 16Mateti/Android

17 public class Intent startActivity to launch an activity. startActivity broadcastIntent to send it to a BroadcastReceiver broadcastIntent Communicate with a Service – startService(Intent) or startService(Intent) – bindService(Intent, ServiceConnection, int) bindService(Intent, ServiceConnection, int) Explicit Intents specify a component to be run. – setComponent(ComponentName) or setComponent(ComponentName) – setClass(Context, Class)) setClass(Context, Class) Implicit Intents match an intent against all of the s in the installed applications. 17Mateti/Android

18 IntentReceivers Components that respond to Intents Way to respond to external notification or alarms Apps can create and broadcast own Intents 18Mateti/Android

19 Example App: Hello World! developer.android.com/resources/tutorials /hello-world.html

20 The Emulator QEMU-based ARM emulator Displays the same image as the device Limitations: –Camera –GPS 20Mateti/Android

21 21 Goal Create a very simple application Run it on the emulator Examine its structure Mateti/Android

22 Building HelloAndroid Create a Project – http://developer.android.com/training/basics/first app/creating-project.html http://developer.android.com/training/basics/first app/creating-project.html Generates several files – Next few slides Modify HelloAndroid.java as needed 22Android-Develop-1

23 23 helloandroid Manifest 1. 2.<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3. package="com.example.helloandroid" 4. android:versionCode="1" 5. android:versionName="1.0"> 6. 7. <activity android:name=".HelloAndroid" 8. android:label="@string/app_name"> 9. 10. 11. 12. 13. 14. 15. Mateti/Android

24 HelloAndroid.java package com.example.helloandroid; import android.app.Activity; import android.os.Bundle; public class HelloAndroid extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } 24 Set the layout of the view as described in the main.xml layout Mateti/Android

25 25 HelloAndroid.java package com.example.helloandroid; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class HelloAndroid extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView tv = new TextView(this); tv.setText("Hello, Android – by hand"); setContentView(tv); } } Set the view “by hand” – from the program Inherit from the Activity Class Mateti/Android

26 26 Run it! Mateti/Android

27 Android Application Package: APK res/layout: declaration layout files res/drawable: intended for drawing res/anim: bitmaps, animations for transitions res/values: externalized values – strings, colors, styles, etc res/xml: general XML files used at runtime res/raw: binary files (e.g., sound) An application consists of: Java Code Data Files Resources Files 27Mateti/Android

28 28 APK Content Java code for our activityAll source code here Generated Java code Helps link resources to Java code Layout of the activity Strings used in the program All non-code resources Android Manifest Images Mateti/Android

29 Android Application Package: APK Using Java/Eclipse/ADT develop source files. An Android application is bundled by the “aapt” tool into an Android package (.apk) – An.apk file is a zip file. Invoke unzip if you wish. “Installing” an Application is a built-in op of Android OS. 29Mateti/Android

30 .apk Internals 1.AndroidManifest.xml — deployment descriptor for applications. 2.IntentReceiver as advertised by the IntentFilter tag. 3.*.java files implement Android activity 4.Main.xml — visual elements, or resources, for use by activities. 5.R.java —automatically generated by Android Developer Tools and "connects" the visual resources to the Java source code. 6.Components share a Linux process: by default, one process per.apk file. 7..apk files are isolated and communicate with each other via Intents or AIDL. 30Mateti/Android

31 Application Resources anything relating to the visual presentation of the application – images, animations, menus, styles, colors, audio files, … resource ID alternate resources for different device configurations 31Mateti/Android

32 AndroidManifest.xml Declares all application components: – – – for content providers – for broadcast receivers The manifest can also: – Identify any user permissions the application requires, such as Internet access or read-access to the user's contacts. – Declare hardware and software features used or required by the application – API libraries the application needs 32Mateti/Android

33 33 /res/layout/main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" /> Further redirection to /res/values/strings.xml Mateti/Android

34 34 /res/values/strings.xml Hello World, HelloAndroid – by resources! Hello, Android Mateti/Android

35 /gen/R.java package com.example.helloandroid; public final class R { public static final class attr { } public static final class drawable { public static final int icon=0x7f020000; } public static final class id { public static final int textview=0x7f050000; } public static final class layout { public static final int main=0x7f030000; } public static final class string { public static final int app_name=0x7f040001; public static final int hello=0x7f040000; } } R.java is auto generated on build. Based on the resource files (including layouts and preferences) Do not edit. Mateti/Android35

36 36 Run it! Mateti/Android

37 Debugging adb Android Debug Bridge adb – moving and syncing files to the emulator – running a Linux shell on the device or emulator Dalvik Debug Monitor Server – DDMS is GUI + adb. – capture screenshots – gather thread and stack information – spoof incoming calls and SMS messages Device or Android Virtual Device DeviceAndroid Virtual Device JDWP Java Debug Wire Protocol – Java IDEs include a JDWP debugger – command line debuggers such as jdb.jdb 37Mateti/Android

38 38 Introduce A Bug package com.example.helloandroid; import android.app.Activity; import android.os.Bundle; public class HelloAndroid extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Object o = null; o.toString(); setContentView(R.layout.main); } } Mateti/Android

39 39 Run it! Mateti/Android

40 Source Code for Android Examples Sources for many Android applications that can be enhanced: http://code.google.com http://developer.android.com/resources/brow ser.html?tag=sample http://developer.android.com/resources/brow ser.html?tag=sample 40Mateti/Android


Download ppt "App Development for Android Prabhaker Mateti. Development Tools (Android) Java – Java is the same. But, not all libs are included. – Unused: Swing, AWT,"

Similar presentations


Ads by Google