Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 293b850d authored by Robert Ly's avatar Robert Ly
Browse files

Doc change: fixing links set 2

Change-Id: I8752cc7c732812a5f11f8b5f5ac83c3a87305f22
parent c74a69a8
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -294,12 +294,11 @@ Manager</strong>.</p>
<p>To run your application against different platform versions in the emulator,
create an AVD for each platform version that you want to test. For more
information about AVDs, see <a
href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a>. If
href="{@docRoot}guide/developing/devices/index.html">Creating and Managing Virtual Devices</a>. If
you are using a physical device for testing, ensure that you know the API Level
of the Android platform it runs. See the table at the top of this document for
a list of platform versions and their API Levels. </p>


<h2 id="provisional">Using a Provisional API Level</h2>

<p>In some cases, an "Early Look" Android SDK platform may be available. To let
+1 −2
Original line number Diff line number Diff line
@@ -91,8 +91,7 @@ page.title=Glossary
    with the SDK. It provides screen capture, log dump, and process
    examination capabilities. If you are developing in Eclipse using the ADT
    Plugin, DDMS is integrated into your development environment. See <a
    href="{@docRoot}guide/developing/tools/ddms.html">Dalvik Debug Monitor
    Server</a> to learn more about the program.</dd>
    href="{@docRoot}guide/developing/debugging/ddms.html">Using DDMS</a> to learn more about the program.</dd>

    <dt id="dialog">Dialog</dt> <dd> A floating window that that acts as a lightweight
    form. A dialog can have button controls only and is intended to perform a
+2 −1
Original line number Diff line number Diff line
page.title=Building and Running Applications
page.title=Building and Running Apps
@jd:body

<div id="qv-wrapper">
@@ -54,6 +54,7 @@ page.title=Building and Running Applications
  <p>The general process for a typical build is outlined below:</p>

  <ul>
  
    <li>The Android Asset Packaging Tool (aapt) takes your application resource files, such as the
    <code>AndroidManifest.xml</code> file and the XML files for your Activities, and compiles them. An <code>R.java</code> is
    also produced so you can reference your resources from your Java code.</li>
+5 −4
Original line number Diff line number Diff line
@@ -9,9 +9,10 @@ page.title=Debugging and Profiling User Interfaces
        <li>
          <a href="#hierarchyViewer">Debugging and Optimizing User Interfaces with Hierarchy
          Viewer</a>
          <ul>
          <ol>
            <li><a href="#layoutview">Layout View</a></li>
        
            <li><a href="#pixelperfect">Pixel Perfect View</a></li>
          </ol>       
        </li>

        <li><a href="#layoutopt">Optimizing Layouts with <code>layoutopt</code></a></li>
@@ -94,7 +95,7 @@ page.title=Debugging and Profiling User Interfaces
  automatically refresh. You must reload the Layout View by clicking <strong>Load View
  Hierarchy</strong>.</p>

  <h3>Pixel Perfect View</h3>
  <h3 id="pixelperfect">Pixel Perfect View</h3>

  <p>The Pixel Perfect View provides a magnified look at the current device window. It helps you
  design your UI better by giving you a closer look at your UI's image quality, alignment, and other
@@ -190,7 +191,7 @@ samples/useless.xml

<p>
For more information on running the tool, see the
<a href="${@docRoot}guide/developing/tools/layoutopt.html">layoutopt</a> reference.</p>
<a href="${@docRoot}guide/developing/debugging/debugging-ui.html#layoutopt">layoutopt</a> reference.</p>
  
    

+5 −5
Original line number Diff line number Diff line
@@ -32,19 +32,19 @@ page.title=Debugging
    UNIX shell on the device or emulator, and providing a general means to communicate with
    connected emulators and devices.</dd>

    <dt><a href="{@docRoot}guide/developing/tools/ddms.html"><strong>Dalvik Debug Monitor
    <dt><a href="{@docRoot}guide/developing/debugging/ddms.html"><strong>Dalvik Debug Monitor
    Server</strong></a></dt>

    <dd>DDMS is a graphical program that communicates with your devices through <code>adb</code>. DDMS can
    capture screenshots, gather thread and stack information, spoof incoming calls and SMS
    messages, and has many other features.</dd>

    <dt><a href="{@docRoot}guide/developing/devices/avds-devices.html"><strong>Device or
    Emulator</strong></a></dt>
    <dt><strong><a href="{@docRoot}guide/developing/device.html">Device</a> or
    <a href="{@docRoot}guide/developing/devices/index.html">Android Virtual Device</a></strong></dt>

    <dd>Your application must run in a device or emulator so that it can be debugged. An <code>adb</code> device
    <dd>Your application must run in a device or in an AVD so that it can be debugged. An <code>adb</code> device
    daemon runs on the device or emulator and provides a means for the <code>adb</code> host daemon to
    communicate with the device.</dd>
    communicate with the device or emulator.</dd>

    <dt><strong>JDWP debugger</strong></dt>

Loading