docs: add links to action bar and drag demos in the index page

Change-Id: I3fb2bff96d958801d350b94e0b0193c71902a7a8
This commit is contained in:
Scott Main
2011-02-14 15:20:44 -08:00
parent 0d9ac4f209
commit 0f911715e4
2 changed files with 29 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
<ul>
<li><a href="#Activity">Activity</a></li>
<li><a href="#Fragment">Fragment</a></li>
<li><a href="#ActionBar">Action Bar</a></li>
<li><a href="#LoaderManager">LoaderManager</a></li>
<li><a href="#Alarm">Alarm</a></li>
<li><a href="#Notification">Notification</a></li>
@@ -113,7 +114,7 @@
<dt><a href="FragmentListArray.html">Fragment List Array</a></dt>
<dd>Demonstrates use of ListFragment to show the contents of a simple ArrayAdapter.</dd>
<dt><a href="FragmentCursorLoader.html">Fragment List Cursor Loader</a></dt>
<dt><a href="FragmentListCursorLoader.html">Fragment List Cursor Loader</a></dt>
<dd>Demonstrates use of LoaderManager to perform a query for a Cursor that
populates a ListFragment.</dd>
@@ -134,6 +135,26 @@
</dl>
<h3 id="ActionBar">Action Bar</h3>
<dl>
<dt><a href="ActionBarMechanics.html">Action Bar Mechanics</a></dt>
<dd>Demonstrates the basics of the Action Bar and how it interoperates with the standard options
menu. This demo is for informative purposes only; see Usage for an example of using the
Action Bar in a more idiomatic manner.</dd>
<dt><a href="ActionBarTabs.html">Action Bar Tabs</a></dt>
<dd>Demonstrates the use of Action Bar tabs and how they interact with other action bar
features.</dd>
<dt><a href="ActionBarUsage.html">Action Bar Usage</a></dt>
<dd>Demonstrates imple usage of the Action Bar, including a SearchView as an action item. The
default Honeycomb theme includes the Action Bar by default and a menu resource is used to populate
the menu data itself. If you'd like to see how these things work under the hood, see
Mechanics.</dd>
<dt><a href="ActionBarDisplayOptions.html">Display Options</a></dt>
<dd>Shows how various Action Bar display option flags can be combined and their effects.</dd>
</dl>
<h3 id="LoaderManager">LoaderManager</h3>
<dl>
<dt><a href="LoaderThrottle.html">Loader Throttle</a></dt>

View File

@@ -257,6 +257,13 @@
<dd>Demonstrates a variety of transformations (android.view.animation.Animation), including fading, motion, and rotation. </dd>
</dl>
<h3>Drag and Drop</h3>
<dl>
<dt><a href="DragAndDropDemo.html">Drag and Drop Demo</a></dt>
<dd>Demonstrates how to perform drag and drop using an OnDragListener. (Uses the <a
href="DraggableDot.html"><code>DraggableDot</code></a> class.) </dd>
</dl>
<h3>Controls</h3>
<dl>
<dt><a href="Controls1.html">1. Light Theme</a></dt>