1<html>
2<head>
3<link rel="stylesheet" type="text/css" href="assets/style.css" />
4<script type="text/javascript" src="http://www.corp.google.com/style/prettify.js"></script>
5<script src="http://www.corp.google.com/eng/techpubs/include/navbar.js" type="text/javascript"></script>
6
7
8
9</head>
10
11<body>
12
13<p>
14Examples of how to use the android.app APIs.
15
16<ol>
17	<li> Activities
18        - These examples show various ways you can use activities to implement an
19application's user interface.
20            <ol>
21			<li> {@link com.android.samples.app.HelloWorld Hello World}
22			<li> {@link com.android.samples.app.SaveRestoreState Save &amp; Restore State}
23			<li>{@link com.android.samples.app.PersistentState Persistent State}
24			<li>{@link com.android.samples.app.ReceiveResult Receive Result}
25			<li>{@link com.android.samples.app.Forwarding Forwarding}
26			</ol>
27	<li> Services
28        - These examples show how you can implement application services, which
29give you a way to run code in the background outside of the normal UI flow.
30            <ol>
31			<li>{@link com.android.samples.app.LocalServiceController Local Service
32			    Controller}
33			<li>{@link com.android.samples.app.LocalServiceBinding Local Service Binding}
34			<li>{@link com.android.samples.app.RemoteServiceController Remote Service
35			    Controller}
36			<li>{@link com.android.samples.app.RemoteServiceBinding Remote Service
37			    Binding}
38			</ol>
39	<li> Alarms
40        - These examples show how you can use alarms to schedule background
41events.
42            <ol>
43			<li>{@link com.android.samples.app.AlarmController Alarm Controller}
44			<li>{@link com.android.samples.app.AlarmService Alarm Service}
45			</ol>
46</ol>
47</body>
48</html>
49