am 95f6c758: Search tag additions

* commit '95f6c758ae176747cf6675e37b984a8aece29dcd':
  Search tag additions
This commit is contained in:
Joe Fernandez
2013-05-14 17:54:58 -07:00
committed by Android Git Automerger
10 changed files with 72 additions and 65 deletions

View File

@@ -1,4 +1,5 @@
page.title=Google Cloud Messaging for Android page.title=Google Cloud Messaging for Android
page.tags="gcm"
header.hide=1 header.hide=1
@jd:body @jd:body

View File

@@ -1,4 +1,5 @@
page.title=Android Supported Media Formats page.title=Android Supported Media Formats
page.tags="video","audio","mpeg","mp4","m4a","mp3","3gp","3gpp","flac","wave","wav"
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">

View File

@@ -1,5 +1,5 @@
page.title=Camera page.title=Camera
page.tags="mediarecorder" page.tags="photo","video","picture","mediarecorder"
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">

View File

@@ -1,4 +1,5 @@
page.title=Accessory Development Kit 2011 Guide page.title=Accessory Development Kit 2011 Guide
page.tags="adk"
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">

View File

@@ -1,4 +1,5 @@
page.title=Accessory Development Kit 2012 Guide page.title=Accessory Development Kit 2012 Guide
page.tags="adk"
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">

View File

@@ -1,4 +1,5 @@
page.title=Accessory Development Kit page.title=Accessory Development Kit
page.tags="adk"
@jd:body @jd:body
<p>The Accessory Development Kit (ADK) is a reference implementation for hardware manufacturers and <p>The Accessory Development Kit (ADK) is a reference implementation for hardware manufacturers and

View File

@@ -1,6 +1,7 @@
page.title=Android Debug Bridge page.title=Android Debug Bridge
parent.title=Tools parent.title=Tools
parent.link=index.html parent.link=index.html
page.tags="adb"
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">
@@ -101,10 +102,10 @@ option to specify the target device to which the command should be directed. </p
<p class="table-caption"><strong>Table 1.</strong> Available adb commands</p> <p class="table-caption"><strong>Table 1.</strong> Available adb commands</p>
<table> <table>
<tr> <tr>
<th>Category</th> <th>Category</th>
<th>Command</th> <th>Command</th>
<th>Description</th> <th>Description</th>
<th>Comments</th> <th>Comments</th>
</tr> </tr>
<tr> <tr>
@@ -280,33 +281,33 @@ would issue the <code>install</code> command as soon as the emulator or device i
<p>Before issuing adb commands, it is helpful to know what emulator/device instances are connected to the adb server. You can generate a list of attached emulators/devices using the <code>devices</code> command: </p> <p>Before issuing adb commands, it is helpful to know what emulator/device instances are connected to the adb server. You can generate a list of attached emulators/devices using the <code>devices</code> command: </p>
<pre class="no-pretty-print">adb devices</pre> <pre class="no-pretty-print">adb devices</pre>
<p>In response, adb prints this status information for each instance:</p> <p>In response, adb prints this status information for each instance:</p>
<ul> <ul>
<li>Serial number &mdash; A string created by adb to uniquely identify an emulator/device instance by its <li>Serial number &mdash; A string created by adb to uniquely identify an emulator/device instance by its
console port number. The format of the serial number is <code>&lt;type&gt;-&lt;consolePort&gt;</code>. console port number. The format of the serial number is <code>&lt;type&gt;-&lt;consolePort&gt;</code>.
Here's an example serial number: <code>emulator-5554</code></li> Here's an example serial number: <code>emulator-5554</code></li>
<li>State &mdash; The connection state of the instance may be one of the following: <li>State &mdash; The connection state of the instance may be one of the following:
<ul> <ul>
<li><code>offline</code> &mdash; the instance is not connected to adb or is not responding.</li> <li><code>offline</code> &mdash; the instance is not connected to adb or is not responding.</li>
<li><code>device</code> &mdash; the instance is now connected to the adb server. Note that this state does not <li><code>device</code> &mdash; the instance is now connected to the adb server. Note that this state does not
imply that the Android system is fully booted and operational, since the instance connects to adb imply that the Android system is fully booted and operational, since the instance connects to adb
while the system is still booting. However, after boot-up, this is the normal operational state of while the system is still booting. However, after boot-up, this is the normal operational state of
an emulator/device instance.</li> an emulator/device instance.</li>
<li><code>no device</code> &mdash; there is no emulator/device connected. <li><code>no device</code> &mdash; there is no emulator/device connected.
</ul> </ul>
</li> </li>
</ul> </ul>
<p>The output for each instance is formatted like this: </p> <p>The output for each instance is formatted like this: </p>
<pre class="no-pretty-print">[serialNumber] [state]</pre> <pre class="no-pretty-print">[serialNumber] [state]</pre>
<p>Here's an example showing the <code>devices</code> command and its output:</p> <p>Here's an example showing the <code>devices</code> command and its output:</p>
<pre class="no-pretty-print">adb devices <pre class="no-pretty-print">adb devices
List of devices attached List of devices attached
emulator-5554&nbsp;&nbsp;device emulator-5554&nbsp;&nbsp;device
emulator-5556&nbsp;&nbsp;device emulator-5556&nbsp;&nbsp;device
@@ -323,13 +324,13 @@ emulator-5558&nbsp;&nbsp;device</pre>
when issuing adb commands. To do so, use the <code>-s</code> option in the commands. The usage when issuing adb commands. To do so, use the <code>-s</code> option in the commands. The usage
for the <code>-s</code> option is:</p> for the <code>-s</code> option is:</p>
<pre class="no-pretty-print">adb -s &lt;serialNumber&gt; &lt;command&gt; </pre> <pre class="no-pretty-print">adb -s &lt;serialNumber&gt; &lt;command&gt; </pre>
<p>As shown, you specify the target instance for a command using its adb-assigned serial number. <p>As shown, you specify the target instance for a command using its adb-assigned serial number.
You can use the <code>devices</code> command to obtain the serial numbers of running You can use the <code>devices</code> command to obtain the serial numbers of running
emulator/device instances. For example: </p> emulator/device instances. For example: </p>
<pre class="no-pretty-print">adb -s emulator-5556 install helloWorld.apk</pre> <pre class="no-pretty-print">adb -s emulator-5556 install helloWorld.apk</pre>
<p>Note that, if you issue a command without specifying a target emulator/device instance <p>Note that, if you issue a command without specifying a target emulator/device instance
while multiple devices are available, adb generates an error. while multiple devices are available, adb generates an error.
@@ -408,11 +409,11 @@ at <code>/system/bin/...</code>
the adb remote shell on the emulator/device. To issue a single command without entering a the adb remote shell on the emulator/device. To issue a single command without entering a
remote shell, use the <code>shell</code> command like this: </p> remote shell, use the <code>shell</code> command like this: </p>
<pre class="no-pretty-print">adb [-d|-e|-s &lt;serialNumber&gt;] shell &lt;shell_command&gt;</pre> <pre class="no-pretty-print">adb [-d|-e|-s &lt;serialNumber&gt;] shell &lt;shell_command&gt;</pre>
<p>Or enter a remote shell on an emulator/device like this:</p> <p>Or enter a remote shell on an emulator/device like this:</p>
<pre class="no-pretty-print">adb [-d|-e|-s &lt;serialNumber&gt;] shell</pre> <pre class="no-pretty-print">adb [-d|-e|-s &lt;serialNumber&gt;] shell</pre>
<p>When you are ready to exit the remote shell, press CTRL+D or type <p>When you are ready to exit the remote shell, press CTRL+D or type
<code>exit</code>. </p> <code>exit</code>. </p>
@@ -441,8 +442,8 @@ adb shell am start -a android.intent.action.VIEW
<p class="table-caption"><strong>Table 2.</strong> Available activity manager commands</p> <p class="table-caption"><strong>Table 2.</strong> Available activity manager commands</p>
<table> <table>
<tr> <tr>
<th>Command</th> <th>Command</th>
<th>Description</th> <th>Description</th>
</tr> </tr>
<tr> <tr>
@@ -843,8 +844,8 @@ adb shell pm uninstall com.example.MyApp
<p class="table-caption"><strong>Table 3.</strong> Available package manager commands.</p> <p class="table-caption"><strong>Table 3.</strong> Available package manager commands.</p>
<table> <table>
<tr> <tr>
<th>Command</th> <th>Command</th>
<th>Description</th> <th>Description</th>
</tr> </tr>
<tr> <tr>
@@ -1155,9 +1156,9 @@ application and sends 500 pseudo-random events to it.</p>
<p class="table-caption"><strong>Table 4.</strong> Some other adb shell commands</p> <p class="table-caption"><strong>Table 4.</strong> Some other adb shell commands</p>
<table> <table>
<tr> <tr>
<th>Shell Command</th> <th>Shell Command</th>
<th>Description</th> <th>Description</th>
<th>Comments</th> <th>Comments</th>
</tr> </tr>
<tr> <tr>

View File

@@ -1,4 +1,5 @@
page.title=Android Developer Tools page.title=Android Developer Tools
page.tags="adt"
@jd:body @jd:body
<div id="qv-wrapper"> <div id="qv-wrapper">

View File

@@ -1,5 +1,5 @@
page.title=Samples page.title=Samples
page.tags="example","code"
@jd:body @jd:body
<p>To help you understand some fundamental Android APIs and coding practices, a variety of sample <p>To help you understand some fundamental Android APIs and coding practices, a variety of sample

View File

@@ -1,5 +1,5 @@
page.title=Capturing Photos page.title=Capturing Photos
page.tags="camera","video" page.tags="camera","video","picture"
trainingnavtop=true trainingnavtop=true
startpage=true startpage=true