Android Development Tutorial
|
|
|
- Gwenda Golden
- 10 years ago
- Views:
Transcription
1 3.2k Android Development Tutorial Free tutorial, donate to support Based on Android 4.2 Lars Vogel Version 11.2 Copyright 2009, 2010, 2011, 2012, 2013 Lars Vogel Revision History by Lars Vogel Revision Lars Vogel Created Revision bug fixing and enhancements Development with Android and Eclipse This tutorial describes how to create Android applications with Eclipse. It is based on Eclipse 4.2 (Juno), Java 1.6 and Android 4.2 (Jelly Bean). Table of Contents 1. What is Android? 1.1. Android Operation System 1.2. Google Play (Android Market) 2. Security and permissions 2.1. Security concept in Android 2.2. Permission concept in Android 3. Android applications and tasks 3.1. Application 3.2. Tasks across application borders 4. Android user interface components 4.1. Activity 4.2. Fragments 4.3. Views and layout manager 4.4. Device configuration specific layouts 5. Other Android components 5.1. Intents 5.2. Services 5.3. ContentProvider 5.4. BroadcastReceiver 5.5. (HomeScreen) Widgets 5.6. Live Wallpapers 6. Android Development Tools 6.1. Android SDK 6.2. Android Development Tools 6.3. Dalvik Virtual Machine 6.4. How to develop Android Applications 6.5. Resource editors 7. Android Application Architecture 7.1. AndroidManifest.xml 7.2. Activities and Lifecycle 7.3. Configuration Change 7.4. Context 1 of 53 3/5/13 10:34 PM
2 8.1. Support in Android for resource files 8.2. Defining IDs 9. Using Resources 9.1. Reference to resources in code 9.2. Reference to resources in XML files 9.3. Activities and Layouts 10. Assets Whats are assets? Accessing assets 11. Installation Options Standalone ADT installation 12. Android virtual device - Emulator What is the Android Emulator? Google vs. Android AVD Emulator Shortcuts Parameter 13. Tutorial: Create and run Android Virtual Device Create AVD Run AVD Stopping the emulator 14. Solving Android development problems 15. Conventions and API level API version Android project and package name 16. Tutorial: create and run Android project 17. Views Available widgets in Android View class 18. Tutorial: Create a temperature converter Install the demo application Create Project Create attributes Add Views Edit view properties Change the Activity source code Start Project 19. Starting an installed application 20. Layout Manager and ViewGroups Available Layout Manager FrameLayout LinearLayout RelativeLayout GridLayout ScrollView 21. Tutorial: ScrollView 22. DDMS perspective and important views DDMS - Dalvik Debug Monitor Server LogCat View File explorer 23. Deployment Overview Deployment via Eclipse Export your application Via external sources Google Play (Market) 24. Thank you 25. Questions and Discussion 26. Links and Literature Source Code Android Resources vogella Resources 2 of 53 3/5/13 10:34 PM
3 1. What is Android? 1.1. Android Operation System Android is an operating system based on Linux with a Java programming interface. The Android Software Development Kit (Android SDK) provides all necessary tools to develop Android applications. This includes a compiler, debugger and a device emulator, as well as its own virtual machine to run Android programs. Android is currently primarily developed by Google. Android allows background processing, provides a rich user interface library, supports 2-D and 3-D graphics using the OpenGL libraries, access to the file system and provides an embedded SQLite database. Android applications consist of different components and can re-use components of other applications. This leads to the concept of a task in Android; an application can re-use other Android components to archive a task. For example you can trigger from your application another application which has itself registered with the Android system to handle photos. In this other application you select a photo and return to your application to use the selected photo Google Play (Android Market) Google offers the Google Play service in which programmers can offer their Android application to Android users. Google phones include the Google Play application which allows to install applications. Google Play also offers an update service, e.g. if a programmer uploads a new version of his application to Google Play, this service will notify existing users that an update is available and allow to install it. Google Play used to be called Android Market. 2. Security and permissions 2.1. Security concept in Android During deployment on an Android device, the Android system will create a unique user and group ID for every Android application. Each application file is private to this generated user, e.g. other applications cannot access these files. In addition each Android application will be started in its own process. Therefore by means of the underlying Linux operating system, every Android application is isolated from other running applications. If data should be shared, the application must do this explicitly, e.g. via a service or a ContentProvider Permission concept in Android Android also contains a permission system. Android predefines permissions for certain tasks but every application can define additional permissions. An Android application declare its required permissions in its AndroidManifest.xml configuration file. For example an application may declare that it requires access to the Internet. Permissions have different levels. Some permissions are automatically granted by the Android system, 3 of 53 3/5/13 10:34 PM
4 In most cases the requested permissions will be presented to the user before installation of the application. The user needs to decide if these permissions are given to the application. If the user denies a permission required by the application, this application cannot be installed. The check of the permission is only performed during installation, permissions cannot be denied or granted after the installation. Not all users pay attention to the required permissions during installation. But some users do and they write negative reviews on Google Play. 3. Android applications and tasks 3.1. Application An Android application consists out of different Android components and additional resources. The Android system knows activities, services, broadcast receiver and content provider as components Tasks across application borders Android application components can connect to components of other Android applications to create tasks. For example an application which allows you to make a photo can start an application and instruct this application to create a new and attach a photo to this Android user interface components The following description gives a overview of the most important user interface related component and parts of an Android application Activity An activity represents the visual representation of an Android application. activities use views, i.e. user interface widgets as for example buttons and fragments to create the user interface and to interact with the user. An Android application can have several activities Fragments Fragments are components which run in the context of an Activity. A Fragment encapsulates application code so that it is easier to reuse it and to support different sized devices. Fragments are optional components which allow you to reuse user interface and non user interface components for different devices configurations Views and layout manager Views are user interface widgets, e.g. buttons or text fields. The base class for all views is the android.view.view class. Views have attributes which can be used to configure their appearance and behavior. A layout manager is responsible for arranging other views. The base class for these layout managers is the android.view.viewgroup class which extends the View class. Layout managers can be nestled to create complex layouts. You should avoid nestling them to deeply 4 of 53 3/5/13 10:34 PM
5 4.4. Device configuration specific layouts The user interface for Activities is typcally defined via XML files (layout files). It is possible to define defined layout file for different device configuration, e.g. based on the available width of the actual device running the application. Fragments are designed to support such a setup. The following pictures shows an activity called MainActivity. On a smaller screen it shows one Fragment and allows that the user navigates to another Fragment. On a wide screen it shows two Fragments. 5 of 53 3/5/13 10:34 PM
6 5. Other Android components Android has several more components which can be used in your Android application Intents Intents are asynchronous messages which allow the application to request functionality from other Android components, e.g. from services or activities. An application can call a component directly (explicit Intent) or ask the Android system to evaluate registered components based on the intent data (implicit intents). For example the application could implement sharing of data via an intent and all components which allow sharing of data would be available for the user to select. Applications register themselves to an intent via an intentfilter. Intents allow an Android application to start and to interact with components from other Android applications Services Services perform tasks without providing a user interface. They can communicate with other Android components and notify the user via the notification framework in Android ContentProvider A content provider provides a structured interface to application data. Via a content provider your application can share data with other applications. Android contains an SQLite database which is frequently used in conjunction with a content provider. The SQLite database would store the data, which would be accessed via the content provider. 6 of 53 3/5/13 10:34 PM
7 broadcast receivers can be registered to receive system messages and intents. A broadcast receiver gets notified by the Android system, if the specified event occurs. For example you can register a broadcast receivers for the event that the Android system completed the boot processor or for the event that the state of the phone changes, e.g. someone is calling (HomeScreen) Widgets Widgets are interactive components which are primarily used on the Android homescreen. They typically display some kind of data and allow the user to perform actions via them. For example a Widget could display a short summary of new s and if the user selects an , it could start the application with the selected Live Wallpapers Live Wallpapers allow you to create animated backgrounds for the Android home screen. 6. Android Development Tools 6.1. Android SDK The Android Software Development Kit (SDK) contains the necessary tools to create, compile and package Android application. Most of these tools are command line based. The Android SDK also provides an Android device emulator, so that Android applications can be tested without a real Android phone. You can create Android virtual devices (AVD) via the Android SDK, which run in this emulator. The Android SDK contains the Android debug bridge (adb) tool which allows to connect to an virtual or real Android device Android Development Tools Google provides the Android Development Tools (ADT) to develop Android applications with Eclipse. ADT is a set of components (plug-ins) which extend the Eclipse IDE with Android development capabilities. ADT contains all required functionalities to create, compile, debug and deploy Android applications from the Eclipse IDE. ADT also allows to create and start AVDs. The Android Development Tools (ADT) provides specialized editors for resources files, e.g. layout files. These editors allow to switch between the XML representation of the file and a richer user interface via tabs on the bottom of the editor Dalvik Virtual Machine The Android system uses a special virtual machine, i.e. the Dalvik Virtual Machine to run Java based applications. Dalvik uses an own bytecode format which is different from Java bytecode. Therefore you cannot directly run Java class files on Android, they need to get converted in the Dalvik bytecode format How to develop Android Applications 7 of 53 3/5/13 10:34 PM
8 converted to Java class files by the Java compiler. The Android SDK contains a tool called dx which converts Java class files into a.dex (Dalvik Executable) file. All class files of one application are placed in one compressed.dex file. During this conversion process redundant information in the class files are optimized in the.dex file. For example if the same String is found in different class files, the.dex file contains only once reference of this String. These dex files are therefore much smaller in size than the corresponding class files. The.dex file and the resources of an Android project, e.g. the images and XML files, are packed into an.apk (Android Package) file. The program aapt (Android Asset Packaging Tool) performs this packaging. The resulting.apk file contains all necessary data to run the Android application and can be deployed to an Android device via the adb tool. The Android Development Tools (ADT) performs these steps transparently to the user. If you use the ADT tooling you press a button the whole Android application (.apk file) will be created and deployed Resource editors The ADT allows the developer to define certain artifacts, e.g. Strings and layout files, in two ways: via a rich editor, and directly via XML. This is done via multi-page editors in Eclipse. In these editors you can switch between both representations by clicking on the tab on the lower part of the screen. For example if you open the res/layout/main.xml file in the Package Explorer View of Eclipse, you can switch between the two representations as depicted in the following screenshot. 7. Android Application Architecture 7.1. AndroidManifest.xml 8 of 53 3/5/13 10:34 PM
9 For example all activities and services of the application must be declared in this file. It must also contain the required permissions for the application. For example if the application requires network access it must be specified here. <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android=" package="de.vogella.android.temperature" android:versioncode="1" android:versionname="1.0"> <application <activity android:name=".convert" <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> </application> <uses-sdk android:minsdkversion="9" /> </manifest> The package attribute defines the base package for the Java objects referred to in this file. If a Java object lies within a different package, it must be declared with the full qualified package name. Google Play requires that every Android application uses its own unique package. Therefore it is a good habit to use your reverse domain name as package name. This will avoid collisions with other Android applications. android:versionname and android:versioncode specify the version of your application. versionname is what the user sees and can be any String. versioncode must be an integer. The Android Market determine based on the versioncode, if it should perform an update of the applications for the existing installations. You typically start with "1" and increase this value by one, if you roll-out a new version of your application. The <activity> tag defines an activity, in this example pointing to the Convert class in the de.vogella.android.temperature package. An intent filter is registered for this class which defines that this activity is started once the application starts (action android:name="android.intent.action.main" ). The category definition category android:name="android.intent.category.launcher" defines that this application is added to the application directory on the Android device. value refers to resource files which contain the actual value of the application name. The usage of resource file makes it easy to provide different resources, e.g. strings, colors, icons, for different devices and makes it easy to translate applications. The uses-sdk part of the AndroidManifest.xml file defines the minimal SDK version for which your application is valid. This will prevent your application being installed on unsupported devices Activities and Lifecycle The Android system controls the lifecycle of your application. At any time the Android system may stop or destroy your application, e.g. because of an incoming call. The Android system defines a lifecycle for activities via predefined methods. The most important methods are: onsaveinstancestate() - called after the Activity is stopped. Used to save data so that the Activity can restore its states if re-started onpause() - always called if the Activity ends, can be used to release resource or save data 9 of 53 3/5/13 10:34 PM
10 7.3. Configuration Change An Activity will also be restarted, if a so called "configuration change" happens. A configuration change happens if an event is triggered which may be relevant for the application. For example if the user changes the orientation of the device (vertically or horizontally). Android assumes that an Activity might want to use different resources for these orientations and restarts the Activity. In the emulator you can simulate the change of the orientation via Ctrl+F11. You can avoid a restart of your application for certain configuration changes via the configchanges attribute on your Activity definition in your AndroidManifest.xml. The following Activity will not be restarted in case of orientation changes or position of the physical keyboard (hidden / visible). <activity android:name=".progresstestactivity" android:label="@string/app_name" android:configchanges="orientation keyboardhidden keyboard"> </activity> 7.4. Context The class android.content.context provides the connection to the Android system and the resources of the project. It is the interface to global information about the application environment. The Context also provides access to Android services, e.g. the Location Service. activities and services extend the Context class. 8. Resources 8.1. Support in Android for resource files Android supports that resources, like images and certain XML configuration files, can be keep separate from the source code. These resources must be defined in the res directory in a special folder dependent on their purpose. You can also append additional qualifiers to the folder name to indicate that the related resources should be used for special configurations, e.g. you can specify that a resource is only valid for a certain screen size. The following table give an overview of the supported resources and their standard folder prefix. Table 1. Resources Resource Folder Description Simple Values /res/values Used to define strings, colors, dimensions, styles and static arrays of strings or integers. By convention each type is stored in a separate file, e.g. strings are defined in the res/values/strings.xml file. Layouts /res/values XML file with layout description files used to define the user interface for activities and Fragments. Styles and Themes /res/values Files which define the appearance of your Android application. Animations /res/animator Define animations in XML for the property animation API which allows to animate arbitrary properties of objects over time. 10 of 53 3/5/13 10:34 PM
11 Menus /res/menu Define the properties of entries for a menu. The gen directory in an Android project contains generated values. R.java is a generated class which contains references to certain resources of the project. If you create a new resource, the corresponding reference is automatically created in R.java via the Eclipse ADT tools. These references are static integer values and define IDs for the resources. The Android system provides methods to access the corresponding resource via these IDs. For example to access a String with the R.string.yourString ID, you would use the getstring(r.string.yourstring)) method. R.java is automatically created by the Eclipse development environment, manual changes are not necessary and will be overridden by the tooling Defining IDs Android allows that you define ID of user interface components dynamically in the layout files, via notation. To control your IDs you can also create a file called ids.xml in your /res/values folder and define all IDs in this file. <?xml version="1.0" encoding="utf-8"?> <resources> <item name="button1" type="id"/> </resources> This allow you to use the ID directly in your layout file. <RelativeLayout xmlns:android=" xmlns:tools=" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".mainactivity" > <Button android:id="@id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerhorizontal="true" android:layout_centervertical="true" android:layout_marginright="27dp" android:text="button" /> </RelativeLayout> 9. Using Resources 9.1. Reference to resources in code The Resources class allows to access individual resources. An instance of Resources can get access via the getresources() method of the Context class. The Resources class is also used by other Android classes, for example the following code shows 11 of 53 3/5/13 10:34 PM
12 BitmapFactory.decodeResource(getResources(), R.drawable.ic_action_search); 9.2. Reference to resources in XML files In your XML files, for example your layout files, you can refer to other resources via sign. For example, if you want to refer to a color which is defined in a XML resource, you can refer to it Or if you defined a "hello" string in an XML resource, you could access it 9.3. Activities and Layouts The user interface for activities is defined via layouts. The layout defines the included Views (widgets) and their properties. A layout can be defined via Java code or via XML. In most cases the layout is defined as an XML file. XML based layouts are defined via a resource file in the /res/layout folder. This file specifies the ViewGroups, Views, their relationship and their attributes for this specific layout. If a View needs to be accessed via Java code, you have to give the View a unique ID via the android:id attribute. To assign a new ID to a View use. The following shows an example in which Button gets the button1 ID assigned. <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="show Preferences" > </Button> By conversion this will create and assign a new yourvalue ID to the corresponding View. In your Java code you can later access a View via the method findviewbyid(r.id.yourvalue). Defining layouts via XML is usually the preferred way as this separates the programming logic from the layout definition. It also allows the definition of different layouts for different devices. You can also mix both approaches. 10. Assets Whats are assets? While the res directory contains structured values which are known to the Android platform, the assets directory can be used to store any kind of data Accessing assets You access this data via the AssetsManager which you can access the getassets() method. The AssetsManager class allows to read a file in the assets folder as InputStream with the open() method. The following code shows an example for this. // Get the AssetManager AssetManager manager = getassets(); // Read a Bitmap from Assets 12 of 53 3/5/13 10:34 PM
13 open = manager.open("logo.png"); Bitmap bitmap = BitmapFactory.decodeStream(open); // Assign the bitmap to an ImageView in this layout ImageView view = (ImageView) findviewbyid(r.id.imageview1); view.setimagebitmap(bitmap); } c a t c h (IOException e) { e.printstacktrace(); } f i n a l l y { i f (open!= null) { t r y { open.close(); } c a t c h (IOException e) { e.printstacktrace(); } } } 11. Installation Options You have different options to install the Android development tools. The simplest way is to download a full packaged pre-configured Eclipse. For other options please see Android installation Standalone ADT installation Download Google provides a pre-packaged and configured Eclipse based Android development environment. The following link allows to download a archive file which includes all required tools for Android development Standalone ADT installation Extract the zip file and start Eclipse from the eclipse folder via the eclipse native launcher, e.g. eclipse.exe under Windows. 12. Android virtual device - Emulator What is the Android Emulator? The Android Development Tools (ADT) include an emulator to run an Android system. The emulator behaves like a real Android device (in most cases) and allows you to test your application without having a real device. You can configure the version of the Android system you would like to run, the size of the SD card, the screen resolution and other relevant settings. You can define several of them with different configurations. These devices are called Android Virtual Device and you can start several in parallel Google vs. Android AVD During the creation of an AVD you decide if you want an Android device or a Google device. 13 of 53 3/5/13 10:34 PM
14 created for the Google API's will also contain several Google applications, most notable the Google Maps application. If you want to use functionality which is only provided via the Google API's, e.g. Google Maps you must run this application on an AVD with Google API's Emulator Shortcuts The following shortcuts are useful for working with the emulator. Alt+Enter Maximizes the emulator. Nice for demos. Ctrl+F11 changes the orientation of the emulator. F8 Turns network on / off Parameter The graphics of the emulator can use the native GPU of the computer. This makes the rendering in the emulator very fast. To enable this, add the GPU Emulation property to the device configuration and set it to true. You can also set the Enabled flag for Snapshots. This will save the state of the emulator and will let it start much faster. Unfortunately currently native GPU rendering and Snapshots do not work together. Android devices do not have to have hardware button. If you want to create such an AVD, add the Hardware Back/Home keys property to the device configuration and set it to false. 14 of 53 3/5/13 10:34 PM
15 13. Tutorial: Create and run Android Virtual Device Create AVD To define an Android Virtual Device (ADV) open the AVD Manager dialog via Window Android Virtual Device Manager and press the New button. 15 of 53 3/5/13 10:34 PM
16 Enter the values similar to the following screenshot. 16 of 53 3/5/13 10:34 PM
17 unit of your computer and this makes rendering on the AVD much faster. Afterwards press the OK button. This will create the AVD configuration and display it under the list of available virtual devices Run AVD To test if your setup is correct, select your your new entry and press the Start button After some time your AVD starts. Do not interrupt this startup process, as this might corrupt the AVD. After the AVD started, you can use the AVD via the mouse and via the virtual keyboard of the emulator. 17 of 53 3/5/13 10:34 PM
18 13.3. Stopping the emulator During development you don't stop the AVD, you just re-deploy your application. 14. Solving Android development problems Things are not always working as they should. You find a list of typical Android development problems and their solution under the following link: Solutions for common Android development problems. 15. Conventions and API level API version The tutorials of this document have been developed and tested with Android 4.2, API Level 17. Please use this version for all tutorials in this tutorial. Higher versions of the API level should also work. A 18 of 53 3/5/13 10:34 PM
19 15.2. Android project and package name The base package for the projects is always the same as the project name, e.g. if you are asked to create a project called de.vogella.android.example.test, then the corresponding package name is de.vogella.android.example.test. The application name, which must be entered on the Android project generation wizard, will not be predefined. Choose a name you like. 16. Tutorial: create and run Android project In this section you create a simple Android project and run it. You create an Android application with the data from the following table. The process of creating the Android application is described and depicted below the table. Table 2. New Android project Property Application Name Project Name Package name Template Activity Layout Value Test App com.vogella.android.first com.vogella.android.first BlankActivity MainActivity activity_main To create a new Android project select File New Other Android Android Project from the menu. Enter the fitting data from the table above in the first wizard page. 19 of 53 3/5/13 10:34 PM
20 Press the Next button and ensure that you have selected to create a launcher icon and an activity. 20 of 53 3/5/13 10:34 PM
21 On the wizard page for the launcher icon, create a nice looking icon. The following screenshot shows an example. 21 of 53 3/5/13 10:34 PM
22 Press the Next button and select on the next page the BlankActivity template. Press the Next button 22 of 53 3/5/13 10:34 PM
23 Enter the following data which was also described in the above table. 23 of 53 3/5/13 10:34 PM
24 If you have not yet done so, create an Android virtual device (AVD) fitting for your selected API version and start this AVD. Wait until the AVD has started. Unlock your emulator. 24 of 53 3/5/13 10:34 PM
25 Start your Android application on the emulator. To build, install and run your application the Android Application, select your project, right click on it, and select Run-As Android Application. 25 of 53 3/5/13 10:34 PM
26 This starts your application on the AVD. The started application is a simple Hello, world. application. 26 of 53 3/5/13 10:34 PM
27 17. Views vogella.com Tutorials Training Services Publications Connect Available widgets in Android Android provides lots of simple views (widgets), e.g. the Button, TextView, EditText classes and well as more complex widgets, for example ListView or GridView to show structured data View class All views in Android extends the android.view.view class. This class is relatively larger (greater than lines of code) and provides a lot of base functionality for subclasses. Customer can implement their own views by extending android.view.view. 18. Tutorial: Create a temperature converter Install the demo application This application is available on the Android Marketplace under Android Temperature converter. Alternatively you can also scan the following barcode with your Android smartphone to install it via the Google Play application Create Project Select File New Other Android Android Application Project to create a new Android project. Use Temperature Converter as Application name and de.vogella.android.temperature as project and package name.select the latest Android SDK for Minimum SDK, Target SDK and Compile with target. After entering this data, press the Next button. 27 of 53 3/5/13 10:34 PM
28 Leave the default settings on the next wizard page and click the Next button. 28 of 53 3/5/13 10:34 PM
29 The next screen allows you to create a launcher icon for your application. Modify the icon to your liking and press the Next button. 29 of 53 3/5/13 10:34 PM
30 Select the BlankActivity template and press the Next button. 30 of 53 3/5/13 10:34 PM
31 On the next dialog ensure that the name of the Activity is set to MainActivity and the layout name is set to activity_main. 31 of 53 3/5/13 10:34 PM
32 Press the Finish button. The wizard may prompt you to install the support library. If you are prompted, select to install it. 32 of 53 3/5/13 10:34 PM
33 After the wizard ends, a project structure similar to the following picture is created. 33 of 53 3/5/13 10:34 PM
34 18.3. Create attributes Android allows you to create static attributes, e.g. Strings or colors. These attributes can for example be used in your XML layout files or referred to via Java source code. Select the res/values/string.xml file and press the Add button. Select the Color entry in the following dialog and press the OK button. Enter mycolor as the name and #F5F5F5 as the value. 34 of 53 3/5/13 10:34 PM
35 Add more attributes, this time of the String type. String attributes allow the developer to translate the application at a later point. Table 3. String Attributes Name celsius fahrenheit calc Value to Celsius to Fahrenheit Calculate Switch to the XML representation and validate that the values are correct. <resources> <string name="app_name">temparature Convertor</string> <string name="hello_world">hello world!</string> <string name="menu_settings">settings</string> <string name="title_activity_main">temparature Convertor</string> <color name="mycolor">#3399cc</color> <string name="celsius" >to Celsius</string> <string name="fahrenheit">to Fahrenheit</string> <string name="calc">calculate</string> </resources> Add Views Select the res/layout/activity_main.xml file and open the Android editor via a double-click. This editor allows you to create the layout via drag and drop or via the XML source code. You can switch between both representations via the tabs at the bottom of the editor. For changing the position and grouping elements you can use the Eclipse Outline view. The following shows a screenshot of the Palette side of this editor. from which you can drag and drop new user interface components into your layout. Please note that the Palette view changes frequently so your view might be a bit different. 35 of 53 3/5/13 10:34 PM
36 You will now create the layout for your Android application. Right-click on the existing Hello World! text object in the layout. Select Delete from the popup menu to remove the text object. Afterwards select the Text Fields section in the Palette and locate the Plain Text (via the tooltip). All entries in the Text Fields section define text fields. The different entries define additional attribute for them, e.g. if a text field should only contain numbers. Drag this onto the layout to create a text input field. Afterwards select the Form Widgets section in the Palette and drag a RadioGroup entry into the layout. The number of radio buttons added to the radio button group depends on your version of Eclipse. Make sure there are two radio buttons by deleting or adding radio buttons to the group. Drag a Button from the Form Widgets section into the layout. The result should look like the following screenshot. 36 of 53 3/5/13 10:34 PM
37 Switch to the XML tab of your layout file and verify that the file looks similar to the following listing. ADT changes the templates very fast, so your XML might look slighty different. <RelativeLayout xmlns:android=" xmlns:tools=" android:layout_width="match_parent" android:layout_height="match_parent" > <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentleft="true" android:layout_alignparenttop="true" android:ems="10" > <requestfocus /> </EditText> <RadioGroup android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentleft="true" > <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true" android:text="radiobutton" /> <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="radiobutton" /> </RadioGroup> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentleft="true" android:text="button" /> 37 of 53 3/5/13 10:34 PM
38 18.5. Edit view properties If you select a user interface component (an instance of View), you can change its properties via the Eclipse Properties view. Most of the properties can be changed via the menu which can be opened via right-click. You can also edit properties of fields directly in XML. Changing properties in the XML file is much faster, if you know what you want to change. But the right-click menu is nice, if you are searching for a certain property. Open your layout file. Use a right-click on the first radio button to assign the celsius String attribute to its text property. Assign the fahrenheit string attribute to the text property of the second radio button. 38 of 53 3/5/13 10:34 PM
39 From now on, I assume you are able to use the properties menu on user interface components. You can always either edit the XML file or modify the properties via right-click. Set the Checked property to true for the first RadioButton. Assign calc to the text property of your button and assign the value onclick to the onclick property. Set the Input type property to numbersigned and numberdecimal on the EditText. All your user interface components are contained in a layout. Assign a background color to this Layout. Right-click on an empty space in Graphical Layout mode, then select Other Properties All by Name Background. Select Color and then select mycolor in the dialog. 39 of 53 3/5/13 10:34 PM
40 difference. Switch to the activity_main.xml tab and verify that the XML is correct. <RelativeLayout xmlns:android=" xmlns:tools=" android:layout_width="match_parent" android:layout_height="match_parent" > <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentleft="true" android:layout_alignparenttop="true" android:ems="10" android:inputtype="numbersigned numberdecimal" > <requestfocus /> </EditText> <RadioGroup android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignparentleft="true" > <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true" /> <RadioButton android:layout_width="wrap_content" android:layout_height="wrap_content" /> </RadioGroup> <Button 40 of 53 3/5/13 10:34 PM
41 android:layout_alignparentleft="true" android:onclick="onclick" /> </RelativeLayout> Change the Activity source code During the generation of your new Android project you specified that an Activity called MainActivity should be created. The project wizard created the corresponding Java class. Change your MainActivity class to the following isting. Note that the onclick will be called based on the OnClick property of your button. I use the same name as this is easier to remember. p a c k a g e de.vogella.android.temperature; i m p o r t android.app.activity; i m p o r t android.os.bundle; i m p o r t android.view.view; i m p o r t android.widget.edittext; i m p o r t android.widget.radiobutton; i m p o r t android.widget.toast; p u b l i c c l a s s MainActivity e x t e n d s Activity { p r i v a t e EditText p u b l i c v o i d oncreate(bundle savedinstancestate) { s u p e r.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); text = (EditText) findviewbyid(r.id.edittext1); } // This method is called at button click because we assigned the name to the // "OnClick property" of the button p u b l i c v o i d onclick(view view) { s w i t c h (view.getid()) { c a s e R.id.button1: RadioButton celsiusbutton = (RadioButton) findviewbyid(r.id.radio0); RadioButton fahrenheitbutton = (RadioButton) findviewbyid(r.id.radio1); i f (text.gettext().length() == 0) { Toast.makeText( t h i s, "Please enter a valid number", Toast.LENGTH_LONG).show(); r e t u r n ; } f l o a t inputvalue = Float.parseFloat(text.getText().toString()); i f (celsiusbutton.ischecked()) { text.settext(string.valueof(convertfahrenheittocelsius(inputvalue))); celsiusbutton.setchecked(false); fahrenheitbutton.setchecked(true); } e l s e { text.settext(string.valueof(convertcelsiustofahrenheit(inputvalue))); fahrenheitbutton.setchecked(false); celsiusbutton.setchecked(true); } b r e a k ; } } // Converts to celsius p r i v a t e f l o a t convertfahrenheittocelsius( f l o a t fahrenheit) { r e t u r n ((fahrenheit - 32) * 5 / 9); } // Converts to fahrenheit p r i v a t e f l o a t convertcelsiustofahrenheit( f l o a t celsius) { r e t u r n ((celsius * 9) / 5) + 32; } } 41 of 53 3/5/13 10:34 PM
42 To start the Android Application, select your project, right click on it, and select Run-As Android Application. If an emulator is not yet running, it will be started. Be patient, the emulator starts up very slowly. Type in a number, select your conversion and press the button. The result should be displayed and the other option should get selected. 19. Starting an installed application After you run your application on the virtual device, you can start it again on the device. If you press the Home button you can select your application. 42 of 53 3/5/13 10:34 PM
43 43 of 53 3/5/13 10:34 PM
44 20. Layout Manager and ViewGroups Available Layout Manager A layout manager is a subclass of ViewGroup and is responsible for the layout of itself and its child Views. Android supports different default layout managers. As of Android 4.0 the most relevant layout managers are LinearLayout, FrameLayout, RelativeLayout and GridLayout. All layouts allow the developer to define attributes. Children can also define attributes which may be evaluated by their parent layout. AbsoluteLayoutLayout is deprecated and TableLayout can be implemented more effectively via GridLayout Children can specify there desired width and height via the following attributes. Table 4. Width and height definition Attribute android:layout_width android:layout_height Description Defines the width of the widget. Defines the height of the widget. Widgets can uses fixed sizes, e.g. with the dp definition, for example 100dp. While dp is a fixed size it 44 of 53 3/5/13 10:34 PM
45 The match_parent value tells the to maximize the widget in its parent. The wrap_content value tells the layout to allocate the minimum amount so that widget is rendered correctly FrameLayout FrameLayout is a layout manager which draws all child elements on top of each other. Which allows to create nice visual effects. The following screenshot shows the Gmail application which uses FrameLayout to display several button on top of another layout LinearLayout LinearLayout puts all its child elements into a single column or row depending on the android:orientation attribute. Possible values for this attribute are horizontal and vertical, horizontal is the default value. If horizontal is used the child elements are layouted as indicated by the following picture. Vertial would result in a layout as depicted in the following picture. LinearLayout can be nested to achieve more complex layouts. 45 of 53 3/5/13 10:34 PM
46 layout parameter. This value specifies how much of the extra space in the layout is allocated to the View. If for example you have two widgets and the first one defines a layout_weight of 1 and the second of 2, the first will get 1/3 of the available space and the other one 2/3. You can also set the layout_width to zero to have always a certain ratio RelativeLayout RelativeLayout allow to position the widget relative to each other. This allows for complex layouts. A simple usage for RelativeLayout is if you want to center a single component. Just add one component to the RelativeLayout and set the android:layout_centerinparent attribute to true. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android=" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <ProgressBar android:id="@+id/progressbar1" style="?android:attr/progressbarstylelarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerinparent="true" /> </RelativeLayout> GridLayout GridLayout was introduced with Android 4.0. This layout allows you to organize a view into a Grid. GridLayout separates its drawing area into: rows, columns, and cells. You can specify how many columns you want for define for each View in which row and column it should be placed and how many columns and rows it should use. If not specified GridLayout uses defaults, e.g. one column, one row and the position of a View depends on the order of the declaration of the Views. The following layout file defines a layout using GridLayout. <?xml version="1.0" encoding="utf-8"?> <GridLayout xmlns:android=" android:id="@+id/gridlayout1" android:layout_width="match_parent" android:layout_height="match_parent" android:columncount="4" android:usedefaultmargins="true" > <TextView android:layout_column="0" android:layout_columnspan="3" android:layout_gravity="center_horizontal" android:layout_margintop="40dp" android:layout_row="0" android:text="user Credentials" android:textsize="32dip" /> <TextView android:layout_column="0" android:layout_gravity="right" android:layout_row="1" android:text="user Name: " > </TextView> <EditText 46 of 53 3/5/13 10:34 PM
47 android:layout_columnspan="2" android:layout_row="1" android:ems="10" /> <TextView android:layout_column="0" android:layout_gravity="right" android:layout_row="2" android:text="password: " > </TextView> <EditText android:layout_column="1" android:layout_columnspan="2" android:layout_row="2" android:ems="8" /> <Button android:layout_column="2" android:layout_row="3" android:text="login" /> </GridLayout> This creates a user interface similar to the following screenshot ScrollView The ScrollView class can be used to contain one View that might be to big too fit on one screen. ScrollView will is this case display a scroll bar to scroll the context. Of course this View can be a layout which can then contain other elements. The following code shows an example layout file which uses a ScrollView. <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android=" 47 of 53 3/5/13 10:34 PM
48 android:fillviewport="true" android:orientation="vertical" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingleft="8dip" android:paddingright="8dip" android:paddingtop="8dip" android:text="this is a header" android:textappearance="?android:attr/textappearancelarge" > </TextView> </ScrollView> The android:fillviewport="true" attribute ensures that the scrollview is set to the full screen even if the elements are smaller then one screen. 21. Tutorial: ScrollView Create an android project "de.vogella.android.scrollview" with the activity "ScrollView". Create the following layout and class. <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android=" android:layout_width="match_parent" android:layout_height="match_parent" android:fillviewport="true" android:orientation="vertical" > <LinearLayout android:id="@+id/linearlayout01" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" > <TextView android:id="@+id/textview01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingleft="8dip" android:paddingright="8dip" android:paddingtop="8dip" android:text="this is a header" android:textappearance="?android:attr/textappearancelarge" > </TextView> <TextView android:id="@+id/textview02" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1.0" android:text="@+id/textview02" > </TextView> <LinearLayout android:id="@+id/linearlayout02" android:layout_width="wrap_content" android:layout_height="wrap_content" > <Button android:id="@+id/button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1.0" android:text="submit" > 48 of 53 3/5/13 10:34 PM
49 <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1.0" android:text="cancel" > </Button> </LinearLayout> </LinearLayout> </ScrollView> p a c k a g e de.vogella.android.scrollview; i m p o r t android.app.activity; i m p o r t android.os.bundle; i m p o r t android.view.view; i m p o r t android.widget.textview; p u b l i c c l a s s ScrollView e x t e n d s Activity { /** Called when the activity is first created. */ p u b l i c v o i d oncreate(bundle savedinstancestate) { s u p e r.oncreate(savedinstancestate); setcontentview(r.layout.main); TextView view = (TextView) findviewbyid(r.id.textview02); String s=""; f o r ( i n t i=0; i < 100; i++) { s += "vogella.com "; } view.settext(s); } 22. DDMS perspective and important views DDMS - Dalvik Debug Monitor Server 49 of 53 3/5/13 10:34 PM
50 application program. Select Window Open Perspective Other DDMS to open this perspective. It includes several Views which can also be used independently and allows for example the application to place calls and send SMS to the device. It also allows the application to set the current geo position and allows you to perform a performance trace of your application LogCat View You can see the Android log statements via the LogCat view. You can open this view via Window Show View Other Android LogCat File explorer The file explorer allows to see the files on the Android simulator. 23. Deployment Overview 50 of 53 3/5/13 10:34 PM
51 USB, yourself the application or use one of the many Android markets to install the application. The following describes the most common ones Deployment via Eclipse Turn on USB Debugging on your device in the settings. Select in the settings of your device Applications Development, then enable USB debugging. You may also need to install the a driver for your mobile phone. Linux and Mac OS usually work out of the box while an Windows OS typically requires the installation of a driver. For details please see Developing on a Device. Please note that the Android version you are developing for must be the installed version on your phone. If you have only one device connected and no emulator running, the Android develoment tools will automatically deploy to this device. If you have several connected you can selected which one shoudl be used Export your application Android application must be signed before they can get installed on an Android device. During development Eclipse signs your application automatically with a debug key. If you want to install your application without the Eclipse IDE you can right-click on it and select Android Tools Export Signed Application Package. This wizard allows to use an existing key or to create a new one. Please note that you need to use the same signature key in Google Play (Google Market) to update your application. If you loose the key you will NOT be able to update your application ever again. Make sure to backup your key Via external sources 51 of 53 3/5/13 10:34 PM
52 an attachment or on a webpage. Android will prompt you if you want to install this application. This requires a setting on the Android device which allows the installation of non-market application. Typically this setting can be found under the "Security" settings Google Play (Market) Google Play requires a one time fee, currently 25 Dollar. After that the developer can directly upload his application and the required icons, under Google Play Publishing. Google performs some automatic scanning of applications, but no approval process is in place. All application, which do not contain malware, will be published. Usually a few minutes after upload, the application is available. 24. Thank you Please help me to support this article: 25. Questions and Discussion Before posting questions, please see the vogella FAQ. If you have questions or find an error in this article please use the Google Group. I have created a short list how to create good questions which might also help you. 26. Links and Literature Source Code Source Code of Examples Android Resources Android ListView and ListActivity Android SQlite Database Android Widgets Android Live Wallpaper Android Services Android Location API and Google Maps Android Intents Android and Networking Android Homepage Android Developer Homepage 52 of 53 3/5/13 10:34 PM
53 Android Google Groups Android Live Folder vogella Resources vogella Training Android and Eclipse Training from the vogella team Android Tutorial Introduction to Android Programming GWT Tutorial Program in Java and compile to JavaScript and HTML Eclipse RCP Tutorial Create native applications in Java JUnit Tutorial Test your application Git Tutorial Put everything you have under distributed version control system 53 of 53 3/5/13 10:34 PM
Tutorial #1. Android Application Development Advanced Hello World App
Tutorial #1 Android Application Development Advanced Hello World App 1. Create a new Android Project 1. Open Eclipse 2. Click the menu File -> New -> Other. 3. Expand the Android folder and select Android
Based on Android 4.0. by Lars Vogel. Version 9.8. Copyright 2009, 2010, 2011, 2012 Lars Vogel. 20.02.2012 Home Tutorials Trainings Books Social
Android Development Tutorial Tutorial 2.6k Based on Android 4.0 Lars Vogel Version 9.8 by Lars Vogel Copyright 2009, 2010, 2011, 2012 Lars Vogel 20.02.2012 Home Tutorials Trainings Books Social Revision
Developing Android Apps: Part 1
: Part 1 [email protected] www.dre.vanderbilt.edu/~schmidt Institute for Software Integrated Systems Vanderbilt University Nashville, Tennessee, USA CS 282 Principles of Operating Systems II Systems
ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I)
ANDROID APPS DEVELOPMENT FOR MOBILE AND TABLET DEVICE (LEVEL I) Who am I? Lo Chi Wing, Peter Lecture 1: Introduction to Android Development Email: [email protected] Facebook: http://www.facebook.com/peterlo111
Getting Started: Creating a Simple App
Getting Started: Creating a Simple App What You will Learn: Setting up your development environment Creating a simple app Personalizing your app Running your app on an emulator The goal of this hour is
Android Basics. Xin Yang 2016-05-06
Android Basics Xin Yang 2016-05-06 1 Outline of Lectures Lecture 1 (45mins) Android Basics Programming environment Components of an Android app Activity, lifecycle, intent Android anatomy Lecture 2 (45mins)
directory to "d:\myproject\android". Hereafter, I shall denote the android installed directory as
1 of 6 2011-03-01 12:16 AM yet another insignificant programming notes... HOME Android SDK 2.2 How to Install and Get Started Introduction Android is a mobile operating system developed by Google, which
Android Java Live and In Action
Android Java Live and In Action Norman McEntire Founder, Servin Corp UCSD Extension Instructor [email protected] Copyright (c) 2013 Servin Corp 1 Opening Remarks Welcome! Thank you! My promise
Getting Started With Android
Getting Started With Android Author: Matthew Davis Date: 07/25/2010 Environment: Ubuntu 10.04 Lucid Lynx Eclipse 3.5.2 Android Development Tools(ADT) 0.9.7 HTC Incredible (Android 2.1) Preface This guide
Mobile Application Development
Mobile Application Development (Android & ios) Tutorial Emirates Skills 2015 3/26/2015 1 What is Android? An open source Linux-based operating system intended for mobile computing platforms Includes a
Android Development. http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系
Android Development http://developer.android.com/develop/ 吳 俊 興 國 立 高 雄 大 學 資 訊 工 程 學 系 Android 3D 1. Design 2. Develop Training API Guides Reference 3. Distribute 2 Development Training Get Started Building
Building Your First App
uilding Your First App Android Developers http://developer.android.com/training/basics/firstapp/inde... Building Your First App Welcome to Android application development! This class teaches you how to
Android Development. Marc Mc Loughlin
Android Development Marc Mc Loughlin Android Development Android Developer Website:h:p://developer.android.com/ Dev Guide Reference Resources Video / Blog SeCng up the SDK h:p://developer.android.com/sdk/
Arduino & Android. A How to on interfacing these two devices. Bryant Tram
Arduino & Android A How to on interfacing these two devices Bryant Tram Contents 1 Overview... 2 2 Other Readings... 2 1. Android Debug Bridge -... 2 2. MicroBridge... 2 3. YouTube tutorial video series
MMI 2: Mobile Human- Computer Interaction Android
MMI 2: Mobile Human- Computer Interaction Android Prof. Dr. [email protected] Mobile Interaction Lab, LMU München Android Software Stack Applications Java SDK Activities Views Resources Animation
Android 多 核 心 嵌 入 式 多 媒 體 系 統 設 計 與 實 作
Android 多 核 心 嵌 入 式 多 媒 體 系 統 設 計 與 實 作 Android Application Development 賴 槿 峰 (Chin-Feng Lai) Assistant Professor, institute of CSIE, National Ilan University Nov. 10 th 2011 2011 MMN Lab. All Rights Reserved
Android Environment SDK
Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 2A. Android Environment: Eclipse & ADT The Android
Android Environment SDK
Part 2-a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 Android Environment: Eclipse & ADT The Android
App Development for Smart Devices. Lec #2: Android Tools, Building Applications, and Activities
App Development for Smart Devices CS 495/595 - Fall 2011 Lec #2: Android Tools, Building Applications, and Activities Tamer Nadeem Dept. of Computer Science Objective Understand Android Tools Setup Android
Android Application Development. Daniel Switkin Senior Software Engineer, Google Inc.
Android Application Development Daniel Switkin Senior Software Engineer, Google Inc. Goal Get you an idea of how to start developing Android applications Introduce major Android application concepts Walk
TUTORIALS AND QUIZ ANDROID APPLICATION SANDEEP REDDY PAKKER. B. Tech in Aurora's Engineering College, 2013 A REPORT
TUTORIALS AND QUIZ ANDROID APPLICATION by SANDEEP REDDY PAKKER B. Tech in Aurora's Engineering College, 2013 A REPORT submitted in partial fulfillment of the requirements for the degree MASTER OF SCIENCE
Chapter 2 Getting Started
Welcome to Android Chapter 2 Getting Started Android SDK contains: API Libraries Developer Tools Documentation Sample Code Best development environment is Eclipse with the Android Developer Tool (ADT)
ECWM511 MOBILE APPLICATION DEVELOPMENT Lecture 1: Introduction to Android
Why Android? ECWM511 MOBILE APPLICATION DEVELOPMENT Lecture 1: Introduction to Android Dr Dimitris C. Dracopoulos A truly open, free development platform based on Linux and open source A component-based
Android Introduction. Hello World. @2010 Mihail L. Sichitiu 1
Android Introduction Hello World @2010 Mihail L. Sichitiu 1 Goal Create a very simple application Run it on a real device Run it on the emulator Examine its structure @2010 Mihail L. Sichitiu 2 Google
ANDROID APP DEVELOPMENT: AN INTRODUCTION CSCI 5115-9/19/14 HANNAH MILLER
ANDROID APP DEVELOPMENT: AN INTRODUCTION CSCI 5115-9/19/14 HANNAH MILLER DISCLAIMER: Main focus should be on USER INTERFACE DESIGN Development and implementation: Weeks 8-11 Begin thinking about targeted
Android For Java Developers. Marko Gargenta Marakana
Android For Java Developers Marko Gargenta Marakana Agenda Android History Android and Java Android SDK Hello World! Main Building Blocks Debugging Summary History 2005 Google buys Android, Inc. Work on
Jordan Jozwiak November 13, 2011
Jordan Jozwiak November 13, 2011 Agenda Why Android? Application framework Getting started UI and widgets Application distribution External libraries Demo Why Android? Why Android? Open source That means
Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3
Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01939-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
MAP524/DPS924 MOBILE APP DEVELOPMENT (ANDROID) MIDTERM TEST OCTOBER 2013 STUDENT NAME STUDENT NUMBER
MAP524/DPS924 MOBILE APP DEVELOPMENT (ANDROID) MIDTERM TEST OCTOBER 2013 STUDENT NAME STUDENT NUMBER Please answer all questions on the question sheet This is an open book/notes test. You are allowed to
Android Programming. Høgskolen i Telemark Telemark University College. Cuong Nguyen, 2013.06.18
Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Cuong Nguyen, 2013.06.18 Faculty of Technology, Postboks 203, Kjølnes ring
Developing NFC Applications on the Android Platform. The Definitive Resource
Developing NFC Applications on the Android Platform The Definitive Resource Part 1 By Kyle Lampert Introduction This guide will use examples from Mac OS X, but the steps are easily adaptable for modern
Advantages. manage port forwarding, set breakpoints, and view thread and process information directly
Part 2 a Android Environment SDK Victor Matos Cleveland State University Notes are based on: Android Developers http://developer.android.com/index.html 1 Android Environment: Eclipse & ADT The Android
How to develop your own app
How to develop your own app It s important that everything on the hardware side and also on the software side of our Android-to-serial converter should be as simple as possible. We have the advantage that
Android Application Development Lecture Notes INDEX
Android Application Development Lecture Notes INDEX Lesson 1. Introduction 1-2 Mobile Phone Evolution 1-3 Hardware: What is inside a Smart Cellular Phone? 1-4 Hardware: Reusing Cell Phone Frequencies 1-5
2. Click the download button for your operating system (Windows, Mac, or Linux).
Table of Contents: Using Android Studio 1 Installing Android Studio 1 Installing IntelliJ IDEA Community Edition 3 Downloading My Book's Examples 4 Launching Android Studio and Importing an Android Project
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months
Specialized Android APP Development Program with Java (SAADPJ) Duration 2 months Our program is a practical knowledge oriented program aimed at making innovative and attractive applications for mobile
Getting started with Android and App Engine
Getting started with Android and App Engine About us Tim Roes Software Developer (Mobile/Web Solutions) at inovex GmbH www.timroes.de www.timroes.de/+ About us Daniel Bälz Student/Android Developer at
Basics. Bruce Crawford Global Solutions Manager
Android Development Basics Bruce Crawford Global Solutions Manager Android Development Environment Setup Agenda Install Java JDK Install Android SDK Add Android SDK packages with Android SDK manager Install
Running a Program on an AVD
Running a Program on an AVD Now that you have a project that builds an application, and an AVD with a system image compatible with the application s build target and API level requirements, you can run
Tutorial: Android Object API Application Development. Sybase Unwired Platform 2.2 SP02
Tutorial: Android Object API Application Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01734-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This
Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development.
Android Development 101 Now that we have the Android SDK, Eclipse and Phones all ready to go we can jump into actual Android development. Activity In Android, each application (and perhaps each screen
Android Application Development - Exam Sample
Android Application Development - Exam Sample 1 Which of these is not recommended in the Android Developer's Guide as a method of creating an individual View? a Create by extending the android.view.view
Presenting Android Development in the CS Curriculum
Presenting Android Development in the CS Curriculum Mao Zheng Hao Fan Department of Computer Science International School of Software University of Wisconsin-La Crosse Wuhan University La Crosse WI, 54601
Developing an Android App. CSC207 Fall 2014
Developing an Android App CSC207 Fall 2014 Overview Android is a mobile operating system first released in 2008. Currently developed by Google and the Open Handset Alliance. The OHA is a consortium of
Android Application Development: Hands- On. Dr. Jogesh K. Muppala [email protected]
Android Application Development: Hands- On Dr. Jogesh K. Muppala [email protected] Wi-Fi Access Wi-Fi Access Account Name: aadc201312 2 The Android Wave! 3 Hello, Android! Configure the Android SDK SDK
Android Setup Phase 2
Android Setup Phase 2 Instructor: Trish Cornez CS260 Fall 2012 Phase 2: Install the Android Components In this phase you will add the Android components to the existing Java setup. This phase must be completed
Developing Android Applications Introduction to Software Engineering Fall 2015. Updated 7 October 2015
Developing Android Applications Introduction to Software Engineering Fall 2015 Updated 7 October 2015 Android Lab 1 Introduction to Android Class Assignment: Simple Android Calculator 2 Class Plan Introduction
Application Development
BEGINNING Android Application Development Wei-Meng Lee WILEY Wiley Publishing, Inc. INTRODUCTION xv CHAPTER 1: GETTING STARTED WITH ANDROID PROGRAMMING 1 What Is Android? 2 Android Versions 2 Features
Mocean Android SDK Developer Guide
Mocean Android SDK Developer Guide For Android SDK Version 3.2 136 Baxter St, New York, NY 10013 Page 1 Table of Contents Table of Contents... 2 Overview... 3 Section 1 Setup... 3 What changed in 3.2:...
Graduate presentation for CSCI 5448. By Janakiram Vantipalli ( [email protected] )
Graduate presentation for CSCI 5448 By Janakiram Vantipalli ( [email protected] ) Content What is Android?? Versions and statistics Android Architecture Application Components Inter Application
B.M. Harwani. Android Programming UNLEASHED. 800 East 96th Street, Indianapolis, Indiana 46240 USA
B.M. Harwani Android Programming UNLEASHED 800 East 96th Street, Indianapolis, Indiana 46240 USA Android Programming Unleashed Copyright 2013 by Pearson Education, Inc. All rights reserved. No part of
4. The Android System
4. The Android System 4. The Android System System-on-Chip Emulator Overview of the Android System Stack Anatomy of an Android Application 73 / 303 4. The Android System Help Yourself Android Java Development
Frameworks & Android. Programmeertechnieken, Tim Cocx
Frameworks & Android Programmeertechnieken, Tim Cocx Discover thediscover world atthe Leiden world University at Leiden University Software maken is hergebruiken The majority of programming activities
Android Programming: Installation, Setup, and Getting Started
2012 Marty Hall Android Programming: Installation, Setup, and Getting Started Originals of Slides and Source Code for Examples: http://www.coreservlets.com/android-tutorial/ Customized Java EE Training:
ADT Plugin for Eclipse
ADT Plugin for Eclipse Android Development Tools (ADT) is a plugin for the Eclipse IDE that is designed to give you a powerful, integrated environment in which to build Android applications. ADT extends
Hacking your Droid ADITYA GUPTA
Hacking your Droid ADITYA GUPTA adityagupta1991 [at] gmail [dot] com facebook[dot]com/aditya1391 Twitter : @adi1391 INTRODUCTION After the recent developments in the smart phones, they are no longer used
Introduction to Android
Introduction to Android Poll How many have an Android phone? How many have downloaded & installed the Android SDK? How many have developed an Android application? How many have deployed an Android application
060010702 Mobile Application Development 2014
Que 1: Short question answer. Unit 1: Introduction to Android and Development tools 1. What kind of tool is used to simulate Android application? 2. Can we use C++ language for Android application development?
INTRODUCTION TO ANDROID CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 11 02/15/2011
INTRODUCTION TO ANDROID CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 11 02/15/2011 1 Goals of the Lecture Present an introduction to the Android Framework Coverage of the framework will be
SDK Quick Start Guide
SDK Quick Start Guide Table of Contents Requirements...3 Project Setup...3 Using the Low Level API...9 SCCoreFacade...9 SCEventListenerFacade...10 Examples...10 Call functionality...10 Messaging functionality...10
How To Develop An Android App On An Android Device
Lesson 2 Android Development Tools = Eclipse + ADT + SDK Victor Matos Cleveland State University Portions of this page are reproduced from work created and shared by Googleand used according to terms described
A software stack for mobile devices:
Programming Mobile Applications for Android Handheld Systems - Week 1 1 - Introduction Today I am going to introduce you to the Android platform. I'll start by giving you an overview of the Android platform,
@ME (About) Marcelo Cyreno. Skype: marcelocyreno Linkedin: marcelocyreno Mail: [email protected]
Introduction @ME (About) Marcelo Cyreno Skype: marcelocyreno Linkedin: marcelocyreno Mail: [email protected] Android - Highlights Open Source Linux Based Developed by Google / Open Handset Alliance
Lecture 1 Introduction to Android
These slides are by Dr. Jaerock Kwon at. The original URL is http://kettering.jrkwon.com/sites/default/files/2011-2/ce-491/lecture/alecture-01.pdf so please use that instead of pointing to this local copy
Android Quiz App Tutorial
Step 1: Define a RelativeLayout Android Quiz App Tutorial Create a new android application and use the default settings. You will have a base app that uses a relative layout already. A RelativeLayout is
Introduction to Android SDK Jordi Linares
Introduction to Android SDK Introduction to Android SDK http://www.android.com Introduction to Android SDK Google -> OHA (Open Handset Alliance) The first truly open and comprehensive platform for mobile
ADITION Android Ad SDK Integration Guide for App Developers
Documentation Version 0.5 ADITION Android Ad SDK Integration Guide for App Developers SDK Version 1 as of 2013 01 04 Copyright 2012 ADITION technologies AG. All rights reserved. 1/7 Table of Contents 1.
Android Programming Basics
2012 Marty Hall Android Programming Basics Originals of Slides and Source Code for Examples: http://www.coreservlets.com/android-tutorial/ Customized Java EE Training: http://courses.coreservlets.com/
Getting Started with Android Development
Getting Started with Android Development By Steven Castellucci (v1.1, January 2015) You don't always need to be in the PRISM lab to work on your 4443 assignments. Working on your own computer is convenient
Homework 9 Android App for Weather Forecast
1. Objectives Homework 9 Android App for Weather Forecast Become familiar with Android Studio, Android App development and Facebook SDK for Android. Build a good-looking Android app using the Android SDK.
Android App Development Lloyd Hasson 2015 CONTENTS. Web-Based Method: Codenvy. Sponsored by. Android App. Development
Android App Lloyd Hasson 2015 Web-Based Method: Codenvy This tutorial goes through the basics of Android app development, using web-based technology and basic coding as well as deploying the app to a virtual
How to Create an Android Application using Eclipse on Windows 7
How to Create an Android Application using Eclipse on Windows 7 Kevin Gleason 11/11/11 This application note is design to teach the reader how to setup an Android Development Environment on a Windows 7
Programming with Android: SDK install and initial setup. Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna
Programming with Android: SDK install and initial setup Luca Bedogni Marco Di Felice Dipartimento di Informatica: Scienza e Ingegneria Università di Bologna SDK and initial setup: Outline Ø Today: How
Homeschool Programming, Inc.
Printed Course Overview TeenCoder: Android Programming Course Title: TeenCoder: Android Programming Printed Course Syllabus and Planner Updated October, 2015 Textbook ISBN: 978-0-9830749-8-4, published
Developing In Eclipse, with ADT
Developing In Eclipse, with ADT Android Developers file://v:\android-sdk-windows\docs\guide\developing\eclipse-adt.html Page 1 of 12 Developing In Eclipse, with ADT The Android Development Tools (ADT)
Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02
Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01939-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication
Tutorial on Basic Android Setup
Tutorial on Basic Android Setup EE368/CS232 Digital Image Processing, Spring 2015 Windows Version Introduction In this tutorial, we will learn how to set up the Android software development environment
Android Basic XML Layouts
Android Basic XML Layouts Notes are based on: The Busy Coder's Guide to Android Development by Mark L. Murphy Copyright 2008-2009 CommonsWare, LLC. ISBN: 978-0-9816780-0-9 & Android Developers http://developer.android.com/index.html
Android Application Development
Android Application Development Self Study Self Study Guide Content: Course Prerequisite Course Content Android SDK Lab Installation Guide Start Training Be Certified Exam sample Course Prerequisite The
Introduction to Android: Hello, Android! 26 Mar 2010 CMPT166 Dr. Sean Ho Trinity Western University
Introduction to Android: Hello, Android! 26 Mar 2010 CMPT166 Dr. Sean Ho Trinity Western University Android OS Open-source mobile OS (mostly Apache licence) Developed by Google + Open Handset Alliance
Android Application Development. Yevheniy Dzezhyts
Android Application Development Yevheniy Dzezhyts Thesis Business Information Technology 2013 Author Yevheniy Dzezhyts Title of thesis Android application development Year of entry 2007 Number of report
Login with Amazon Getting Started Guide for Android. Version 2.0
Getting Started Guide for Android Version 2.0 Login with Amazon: Getting Started Guide for Android Copyright 2016 Amazon.com, Inc., or its affiliates. All rights reserved. Amazon and the Amazon logo are
Building an Android client. Rohit Nayak Talentica Software
Building an Android client Rohit Nayak Talentica Software Agenda iphone and the Mobile App Explosion How mobile apps differ Android philosophy Development Platform Core Android Concepts App Demo App Dissection
Workshop on Android and Applications Development
Workshop on Android and Applications Development Duration: 2 Days (8 hrs/day) Introduction: With over one billion devices activated, Android is an exciting space to make apps to help you communicate, organize,
Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0
Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway
Android Development Tutorial. Human-Computer Interaction II (COMP 4020) Winter 2013
Android Development Tutorial Human-Computer Interaction II (COMP 4020) Winter 2013 Mobile OS Symbian ios BlackBerry Window Phone Android. World-Wide Smartphone Sales (Thousands of Units) Android Phones
How to build your first Android Application in Windows
APPLICATION NOTE How to build your first Android Application in Windows 3/30/2012 Created by: Micah Zastrow Abstract This application note is designed to teach the reader how to setup the Android Development
ANDROID TUTORIAL. Simply Easy Learning by tutorialspoint.com. tutorialspoint.com
Android Tutorial ANDROID TUTORIAL by tutorialspoint.com tutorialspoint.com i ABOUT THE TUTORIAL Android Tutorial Android is an open source and Linux-based operating system for mobile devices such as smartphones
Admin. Mobile Software Development Framework: Android Activity, View/ViewGroup, External Resources. Recap: TinyOS. Recap: J2ME Framework
Admin. Mobile Software Development Framework: Android Activity, View/ViewGroup, External Resources Homework 2 questions 10/9/2012 Y. Richard Yang 1 2 Recap: TinyOS Hardware components motivated design
