Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
docs: add links to action bar and drag demos in the index page
Browse files Browse the repository at this point in the history
Change-Id: I3fb2bff96d958801d350b94e0b0193c71902a7a8
  • Loading branch information
scottamain committed Feb 14, 2011
1 parent 0d9ac4f commit 0f91171
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
23 changes: 22 additions & 1 deletion samples/ApiDemos/src/com/example/android/apis/app/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -113,7 +114,7 @@ <h3 id="Fragment">Fragment</h3>
<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>

Expand All @@ -134,6 +135,26 @@ <h3 id="Fragment">Fragment</h3>

</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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,13 @@ <h3>Animation</h3>
<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>
Expand Down

0 comments on commit 0f91171

Please sign in to comment.