development
修订版 | 3ea03c5321a5bbe2ca221d39ad566321c573276f (tree) |
---|---|
时间 | 2011-01-12 14:09:53 |
作者 | Scott Main <smain@goog...> |
Commiter | Scott Main |
docs: add section links to samples overview
Change-Id: Ib605362eb97e607eba3d965a5ca0f32e6207b841
@@ -1,5 +1,17 @@ | ||
1 | 1 | |
2 | -<h3>Activity</h3> | |
2 | +<p>This section includes samples for:</p> | |
3 | +<ul> | |
4 | + <li><a href="#Activity">Activity</a></li> | |
5 | + <li><a href="#Fragment">Fragment</a></li> | |
6 | + <li><a href="#LoaderManager">LoaderManager</a></li> | |
7 | + <li><a href="#Alarm">Alarm</a></li> | |
8 | + <li><a href="#Notification">Notification</a></li> | |
9 | + <li><a href="#Search">Search</a></li> | |
10 | + <li><a href="#Misc">Misc</a></li> | |
11 | +</ul> | |
12 | + | |
13 | + | |
14 | +<h3 id="Activity">Activity</h3> | |
3 | 15 | <dl> |
4 | 16 | <dt><a href="HelloWorld.html">Hello World</a></dt> |
5 | 17 | <dd>Demonstrates a basic screen activity. |
@@ -73,7 +85,7 @@ | ||
73 | 85 | on top of the system wallpaper.</dd> |
74 | 86 | </dl> |
75 | 87 | |
76 | -<h3>Fragment</h3> | |
88 | +<h3 id="Fragment">Fragment</h3> | |
77 | 89 | <dl> |
78 | 90 | <dt><a href="FragmentAlertDialog.html">Fragment Alert Dialog</a></dt> |
79 | 91 | <dd>Demonstrates how to use a DialogFragment to show and manage an |
@@ -122,7 +134,7 @@ | ||
122 | 134 | |
123 | 135 | </dl> |
124 | 136 | |
125 | -<h3>LoaderManager</h3> | |
137 | +<h3 id="LoaderManager">LoaderManager</h3> | |
126 | 138 | <dl> |
127 | 139 | <dt><a href="LoaderThrottle.html">Loader Throttle</a></dt> |
128 | 140 | <dd>Complete end-to-end demonstration of a simple content provider that |
@@ -132,7 +144,7 @@ | ||
132 | 144 | in this case.</dd> |
133 | 145 | </dl> |
134 | 146 | |
135 | -<h3>Service</h3> | |
147 | +<h3 id="Service">Service</h3> | |
136 | 148 | <dl> |
137 | 149 | <dt><a href="LocalService.html">Local Service</a></dt> |
138 | 150 | <dd>Demonstrate the implementation of a service that runs in the same |
@@ -180,7 +192,7 @@ | ||
180 | 192 | |
181 | 193 | </dl> |
182 | 194 | |
183 | -<h3>Alarm</h3> | |
195 | +<h3 id="Alarm">Alarm</h3> | |
184 | 196 | <dl> |
185 | 197 | <dt><a href="AlarmController.html">Alarm Controller</a></dt> |
186 | 198 | <dd>Demonstrates two ways you can schedule alarms: a one-shot alarm that |
@@ -213,7 +225,7 @@ | ||
213 | 225 | </dd> |
214 | 226 | </dl> |
215 | 227 | |
216 | -<h3>Notification</h3> | |
228 | +<h3 id="Notification">Notification</h3> | |
217 | 229 | <dl> |
218 | 230 | <dt><a href="NotifyWithText.html">NotifyWithText</a></dt> |
219 | 231 | <dd>Demonstrates popup notifications of varying length.</dd> |
@@ -226,7 +238,7 @@ | ||
226 | 238 | the status bar, and a standard way for handling them.</dd> |
227 | 239 | </dl> |
228 | 240 | |
229 | -<h3>Search</h3> | |
241 | +<h3 id="Search">Search</h3> | |
230 | 242 | <dl> |
231 | 243 | <dt><a href="SearchInvoke.html">SearchInvoke</a></dt> |
232 | 244 | <dd>Demonstrates various ways in which activities can launch the Search UI.</dd> |
@@ -239,7 +251,7 @@ | ||
239 | 251 | </dl> |
240 | 252 | |
241 | 253 | |
242 | -<h3>Misc</h3> | |
254 | +<h3 id="Misc">Misc</h3> | |
243 | 255 | <dl> |
244 | 256 | <dt><a href="AlertDialogSamples.html">Alert Dialog Samples</a></dt> |
245 | 257 | <dd>Demonstrates various styles of alert dialogs.</dd> |
@@ -1,6 +1,8 @@ | ||
1 | 1 | <dl> |
2 | 2 | <dt><a href="Link.html">Linkify</a></dt> |
3 | - <dd>Demonstrates the {@link android.text.util.Linkify Linkify} class, which converts URLs in a block of text into hyperlinks. </dd> | |
3 | + <dd>Demonstrates the <a | |
4 | +href="../../../../../../../../../reference/android/text/util/Linkify.html"><code>Linkify</code> | |
5 | +class, which converts URLs in a block of text into hyperlinks. </dd> | |
4 | 6 | </dl> |
5 | 7 | |
6 | 8 |