Android Programming Tutorial: Rong Zheng
Android Programming Tutorial: Rong Zheng
Rong Zheng
Outline
What is Android OS
Setup your development environment
GUI
Layouts
Activity life cycle
Event handling
Tasks
Intent and broadcast receiver
Resource
What is Android
Linux-based OS
Dalvik virtual
machine running
dex-code translated
from Java
Setup
Possible alternatives:
Genymotion (previously
AndroVM), Manymo,
Activity
Implements the real logic behind the application
There could be multiple activities
Wire up widgets
Get the references
public View findViewById( int id)
Set listeners
AsyncTask
Network operations typically take time to complete
AsyncTask allows operations running in the background and
publishing the results on the UI thread
Do not block the UI thread!
Do not access the Android UI toolkits from outside the UI thread
AsyncTask (cont)
doInBackground(Void... params)
What to do in the background
Little tricks
Can execute shell commands from Android app
Runtime.getRuntime().exec(Cmd)
Broadcast intent
Your application
Intent(DO_SOMETHING)
Android OS
(any app)
Intent(DO_SOMETHING)
Broadcast receiver
Allows to register for system wide or application events
ACTION_BATTERY_LOW, ACTION_HEADSET_PLUG,
ACTION_SCREEN_ON, ACTION_TIMEZONE_CHANGED,
WifiManager.SCAN_RESULTS_AVAILABLE_ACTION, etc
Example
if (mReceiverWifi == null)
mReceiverWifi = new WifiReceiver();
registerReceiver(mReceiverWifi, new IntentFilter(
WifiManager.NETWORK_STATE_CHANGED_ACTION));
Resource
ADT bundle
http://developer.android.com/sdk/index.html
ADT Eclipse Plug-in
http://developer.android.com/tools/sdk/eclipse-adt.html
Android API
http://developer.android.com/reference/packages.html