am 796ce77a: docs: add breadcrumbs to articles and tutorials

* commit '796ce77abf3d1d006576490c286e72ebf0736280':
  docs: add breadcrumbs to articles and tutorials
This commit is contained in:
Scott Main
2011-02-16 10:23:05 -08:00
committed by Android Git Automerger
40 changed files with 80 additions and 0 deletions

View File

@@ -1,4 +1,6 @@
page.title=Avoiding Memory Leaks page.title=Avoiding Memory Leaks
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Backward Compatibility for Applications page.title=Backward Compatibility for Applications
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Can I Use this Intent? page.title=Can I Use this Intent?
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Android offers a very powerful and yet easy-to-use message type called <p>Android offers a very powerful and yet easy-to-use message type called

View File

@@ -1,4 +1,6 @@
page.title=Using the Contacts API page.title=Using the Contacts API
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Starting from Android 2.0 (API Level 5), the Android platform provides an <p>Starting from Android 2.0 (API Level 5), the Android platform provides an

View File

@@ -1,4 +1,6 @@
page.title=Creating an Input Method page.title=Creating an Input Method
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Drawable Mutations page.title=Drawable Mutations
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Android's drawables are extremely useful to easily build applications. A <p>Android's drawables are extremely useful to easily build applications. A

View File

@@ -1,4 +1,6 @@
page.title=Faster Screen Orientation Change page.title=Faster Screen Orientation Change
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Future-Proofing Your Apps page.title=Future-Proofing Your Apps
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>It's important to implement your application so that it will not break as new <p>It's important to implement your application so that it will not break as new

View File

@@ -1,4 +1,6 @@
page.title=Gestures page.title=Gestures
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Touch screens are a great way to interact with applications on <p>Touch screens are a great way to interact with applications on

View File

@@ -1,4 +1,6 @@
page.title=Introducing GLSurfaceView page.title=Introducing GLSurfaceView
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Technical Articles page.title=Technical Articles
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<dl> <dl>

View File

@@ -1,4 +1,6 @@
page.title=Layout Tricks: Creating Efficient Layouts page.title=Layout Tricks: Creating Efficient Layouts
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>The Android UI toolkit offers several layout managers that are <p>The Android UI toolkit offers several layout managers that are

View File

@@ -1,4 +1,6 @@
page.title=Layout Tricks: Merging Layouts page.title=Layout Tricks: Merging Layouts
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>The articles showed you how to use the <code>&lt;include /&gt;</code> tag in XML layouts, to <p>The articles showed you how to use the <code>&lt;include /&gt;</code> tag in XML layouts, to

View File

@@ -1,4 +1,6 @@
page.title=Layout Tricks: Creating Reusable UI Components page.title=Layout Tricks: Creating Reusable UI Components
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>The Android platform offers a wide variety of UI <em>widgets</em>, small <p>The Android platform offers a wide variety of UI <em>widgets</em>, small

View File

@@ -1,4 +1,6 @@
page.title=Layout Tricks: Using ViewStubs page.title=Layout Tricks: Using ViewStubs
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Sharing and reusing UI components is very easy with Android, thanks to the <a <p>Sharing and reusing UI components is very easy with Android, thanks to the <a

View File

@@ -1,4 +1,6 @@
page.title=ListView Backgrounds: An Optimization page.title=ListView Backgrounds: An Optimization
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>{@link android.widget.ListView} is one of Android's most widely used widgets. <p>{@link android.widget.ListView} is one of Android's most widely used widgets.

View File

@@ -1,4 +1,6 @@
page.title=Live Folders page.title=Live Folders
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Live folders, introduced in Android 1.5 (API Level 3), let you display any source of data <p>Live folders, introduced in Android 1.5 (API Level 3), let you display any source of data

View File

@@ -1,4 +1,6 @@
page.title=Live Wallpapers page.title=Live Wallpapers
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Onscreen Input Methods page.title=Onscreen Input Methods
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Painless Threading page.title=Painless Threading
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>This article discusses the threading model used by Android applications and how applications can ensure best UI performance by spawning worker threads to handle long-running operations, rather than handling them in the main thread. The article also explains the API that your application can use to interact with Android UI toolkit components running on the main thread and spawn managed worker threads. </p> <p>This article discusses the threading model used by Android applications and how applications can ensure best UI performance by spawning worker threads to handle long-running operations, rather than handling them in the main thread. The article also explains the API that your application can use to interact with Android UI toolkit components running on the main thread and spawn managed worker threads. </p>

View File

@@ -1,4 +1,6 @@
page.title=Quick Search Box page.title=Quick Search Box
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Speech Input page.title=Speech Input
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p> People love their mobile phones because they can stay in touch wherever they <p> People love their mobile phones because they can stay in touch wherever they

View File

@@ -1,4 +1,6 @@
page.title=Updating the UI from a Timer page.title=Updating the UI from a Timer
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<img style="margin: 1.5em; float: right;" src="images/JFlubber.png" alt="" id="BLOGGER_PHOTO_ID_5135098660116808706" border="0"> <img style="margin: 1.5em; float: right;" src="images/JFlubber.png" alt="" id="BLOGGER_PHOTO_ID_5135098660116808706" border="0">

View File

@@ -1,4 +1,6 @@
page.title=Touch Mode page.title=Touch Mode
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>This article explains the <em>touch mode</em>, one of the most <p>This article explains the <em>touch mode</em>, one of the most

View File

@@ -1,4 +1,6 @@
page.title=Tracking Memory Allocations page.title=Tracking Memory Allocations
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Writing efficient mobile applications is not always straightforward. In <p>Writing efficient mobile applications is not always straightforward. In

View File

@@ -1,4 +1,6 @@
page.title=Using Text-to-Speech page.title=Using Text-to-Speech
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Starting with Android 1.6 (API Level 4), the Android platform includes a new <p>Starting with Android 1.6 (API Level 4), the Android platform includes a new

View File

@@ -1,4 +1,6 @@
page.title=UI Framework Changes in Android 1.5 page.title=UI Framework Changes in Android 1.5
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=UI Framework Changes in Android 1.6 page.title=UI Framework Changes in Android 1.6
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Android 1.6 introduces numerous enhancements and bug fixes in the UI <p>Android 1.6 introduces numerous enhancements and bug fixes in the UI

View File

@@ -1,4 +1,6 @@
page.title=Using WebViews page.title=Using WebViews
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>A small application called <a title="WebViewDemo" <p>A small application called <a title="WebViewDemo"

View File

@@ -1,4 +1,6 @@
page.title=WikiNotes: Routing Intents page.title=WikiNotes: Routing Intents
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=WikiNotes: Linkify your Text! page.title=WikiNotes: Linkify your Text!
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<img style="margin-left: 1.5em; margin-bottom:1.5em; float: right;" <img style="margin-left: 1.5em; margin-bottom:1.5em; float: right;"

View File

@@ -1,4 +1,6 @@
page.title=Window Backgrounds &amp; UI Speed page.title=Window Backgrounds &amp; UI Speed
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>Some Android applications require to squeeze every bit of performance out of <p>Some Android applications require to squeeze every bit of performance out of

View File

@@ -1,4 +1,6 @@
page.title=Zipalign: an Easy Optimization page.title=Zipalign: an Easy Optimization
parent.title=Articles
parent.link=../browser.html?tag=article
@jd:body @jd:body
<p>The Android SDK includes a tool called <a <p>The Android SDK includes a tool called <a

View File

@@ -1,4 +1,6 @@
page.title=Getting the Samples page.title=Getting the Samples
parent.title=Sample Code
parent.link=../browser.html?tag=sample
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Hello, World page.title=Hello, World
parent.title=Tutorials
parent.link=../browser.html?tag=tutorial
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">
<div id="qv"> <div id="qv">

View File

@@ -1,4 +1,6 @@
page.title=Hello, L10N page.title=Hello, L10N
parent.title=Tutorials
parent.link=../../browser.html?tag=tutorial
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">

View File

@@ -1,4 +1,6 @@
page.title=Notepad Tutorial page.title=Notepad Tutorial
parent.title=Tutorials
parent.link=../../browser.html?tag=tutorial
@jd:body @jd:body

View File

@@ -1,4 +1,6 @@
page.title=Activity Testing page.title=Activity Testing
parent.title=Tutorials
parent.link=../../browser.html?tag=tutorial
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">
<div id="qv"> <div id="qv">

View File

@@ -1,4 +1,6 @@
page.title=Hello, Testing page.title=Hello, Testing
parent.title=Tutorials
parent.link=../../browser.html?tag=tutorial
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">
<div id="qv"> <div id="qv">

View File

@@ -1,4 +1,6 @@
page.title=Hello, Views page.title=Hello, Views
parent.title=Tutorials
parent.link=../../browser.html?tag=tutorial
@jd:body @jd:body
<style> <style>