Google Android
#1

[attachment=12073]
Google Android
Mobile Computing
Android is part of the ‘build a better phone’ process
Open Handset Alliance produces Android
Android is growing
Android makes mobile Java easier
Android applications are written in Java
package com.google.android.helloactivity;
import android.app.Activity;
import android.os.Bundle;
public class HelloActivity extends Activity {
public HelloActivity() {
}
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.hello_activity);
}
}
Android applications are compiled to Dalvik bytecode
The Dalvik runtime is optimised for mobile applications
Run multiple VMs efficiently
Android has many components
Can assume that most have android 2.1 or 2.2
Android has a working emulator
All applications are written in Java and available to each other
Android designed to enable reuse of components in other applications
Android applications have common structure
There is a common file structure for applications
Standard components form building blocks for Android apps
The AndroidManifest lists application details
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.androidapk/res/android"
package="com.my_domain.app.helloactivity">
<application android:label="@string/app_name">
<activity android:name=".HelloActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
Activity is one thing you can do
Intent provides late running binding to other apps
It can be thought of as the glue between activities. It is basically a passive data structure holding an abstract description of an action to be performed.
Services declared in the manifest and provide support
Notifications let you know of background events
ContentProviders share data
UI layouts are in Java and XML
Security in Android follows standard Linux guidelines

Reply
#2

to get information about the topic android full report ,ppt and related topic refer the page link bellow

http://studentbank.in/report-android-full-report?page=2

http://studentbank.in/report-android-pro...r-students

http://studentbank.in/report-android-full-report

http://studentbank.in/report-google-android

http://studentbank.in/report-android-int...-questions

http://studentbank.in/report-android-full-report?page=3

http://studentbank.in/report-tetris-deve...ull-report

http://studentbank.in/report-android-full-report?page=6

http://studentbank.in/report-android-full-report?page=4

http://studentbank.in/report-android-ful...?pid=42555

http://studentbank.in/report-android-ful...?pid=45505

http://studentbank.in/report-android-full-report?page=5
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: ppt on a study on present and future of google s android, google android phonegoogle android, google android marketplace tablet, google android seminar ppt thane to pune, x android, gde android installieren, xda android desire,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  Google Vs Microsoft project report helper 2 3,689 15-07-2013, 02:02 PM
Last Post: computer topic
  Google Android - A Comprehensive Introduction computer girl 0 1,182 07-06-2012, 03:20 PM
Last Post: computer girl

Forum Jump: