diff --git a/docs/html/guide/developing/debugging/debugging-ui.jd b/docs/html/guide/developing/debugging/debugging-ui.jd index 9b02d3443bf76..7d4a2d1a1121c 100644 --- a/docs/html/guide/developing/debugging/debugging-ui.jd +++ b/docs/html/guide/developing/debugging/debugging-ui.jd @@ -7,162 +7,498 @@ page.title=Debugging and Profiling User Interfaces
  1. - Debugging and Optimizing User Interfaces with Hierarchy - Viewer -
      -
    1. Layout View
    2. -
    3. Pixel Perfect View
    4. -
    + + Debugging and Optimizing User Interfaces with Hierarchy Viewer + +
      +
    1. Running Hierarchy Viewer and choosing a window
    2. +
    3. About the View Hierarchy window
    4. +
    5. Working with an individual View in Tree View
    6. +
    7. Debugging with View Hierarchy
    8. +
    9. Optimizing with View Hierarchy
    10. +
    +
  2. +
  3. + + Examining and Designing User Interfaces with Pixel Perfect + +
      +
    1. About the Pixel Perfect window
    2. +
    3. Working with Pixel Perfect overlays
    4. +
  4. -
  5. Optimizing Layouts with layoutopt
-

Sometimes your application's layout can slow down your application. - To help debug issues in your layout, the Android SDK provides the Hierarchy Viewer and +

Sometimes your application's layout can slow down your application. + To help debug issues in your layout, the Android SDK provides the Hierarchy Viewer and layoutopt tools.

- +

The Hierarchy Viewer application allows you to debug and optimize your user interface. It - provides a visual representation of the layout's View hierarchy (the Layout View) and a magnified - inspector of the display (the Pixel Perfect View).

+ provides a visual representation of the layout's View hierarchy (the View Hierarchy window) + and a magnified view of the display (the Pixel Perfect window).

layoutopt is a command-line tool that helps you optimize the layouts and layout hierarchies of your applications. You can run it against your layout files or resource directories to quickly check for inefficiencies or other types of problems that could be affecting the performance of your application.

-

Debugging and Optimizing User Interfaces with Hierarchy Viewer

+

Debugging and Optimizing User Interfaces with Hierarchy Viewer

-

To get the Hierarchy Viewer started:

- -
    -
  1. Connect your device or launch an emulator.
  2. - -
  3. From a terminal, launch hierarchyviewer from the <sdk>/tools/ - directory.
  4. - -
  5. In the window that opens, you'll see a list of Devices. When a device is - selected, a list of currently active Windows is displayed on the right. The - <Focused Window> is the window currently in the foreground, and also the default - window loaded if you do not select another.
  6. - -
  7. Select the window that you'd like to inspect and click Load View - Hierarchy. The Layout View will be loaded. You can then load the Pixel Perfect View by - clicking the second icon at the bottom-left of the window.
  8. -
- -

If you've navigated to a different window on the device, press Refresh - Windows to refresh the list of available windows on the right.

- - -

Layout View

- -

The Layout View offers a look at the View layout and properties. It has three views:

- -
- Running Hierarchy Viewer and choosing a window +

+ To run Hierarchy Viewer, follow these steps:

+
    +
  1. + Connect your device or launch an emulator. +

    + To preserve security, Hierarchy Viewer can only connect to devices running a + developer version of the Android system. +

    +
  2. +
  3. + If you have not done so already, install the application you want to work with. +
  4. +
  5. + Run the application, and ensure that its UI is visible. +
  6. +
  7. + From a terminal, launch hierarchyviewer from the + <sdk>/tools/ + directory. +
  8. +
  9. + The first window you see displays a list of devices and emulators. To expand the list + of Activity objects for a device or emulator, click the arrow on the left. This displays a + list of the Activity objects whose UI is currently visible on the device or emulator. The + objects are listed by their Android component name. The list includes both your application + Activity and system Activity objects. A screenshot of this window appears in + figure 1. +
  10. +
  11. + Select the name of your Activity from the list. You can now look at its view + hierarchy using the View Hierarchy window, or look at a magnified image of the UI using + the Pixel Perfect window. +
  12. +
+

+ To learn how to use the View Hierarchy window, go to + About the View Hierarchy window. To learn how to use the + Pixel Perfect window, go to About the Pixel Perfect window. +

+ +

Figure 1. Hierarchy Viewer device window

+

About the View Hierarchy window

+

+ The View Hierarchy window displays the View objects that form the UI of the + Activity that is running on your device or emulator. You use it to look at individual + View objects within the context of the entire View tree. For each View object, the View + Hierarchy window also displays rendering performance data. +

+

+ To see the View Hierarchy window, run Hierarchy Viewer as described in + the section Running Hierarchy Viewer and choosing a window. Next, click + View Hierarchy at the top of the device window. +

+

+ You should see four panes: +

+ +

+ When the UI of the current Activity changes, the View Hierarchy window is not automatically + updated. To update it, click Load View Hierarchy at the top of the window. +

+

+ Also, the window is not updated if you switch to a new Activity. To update it, start by + clicking the window selection icon in the bottom left-hand corner of the window. This + navigates back to the Window Selection window. From this window, click the Android + component name of the new Activity and then click Load View Hierarchy + at the top of the window. +

+

+ A screenshot of the View Hierarchy window appears in figure 2. +

+ +

Figure 2. The View Hierarchy window

+

Working with an individual View in Tree View

+

+ Each node in Tree View represents a single View. Some information is always visible. Starting + at the top of the node, you see the following: +

+
    +
  1. + View class: The View object's class. +
  2. +
  3. + View object address: A pointer to View object. +
  4. +
  5. + View object ID: The value of the + android:id + attribute. +
  6. +
  7. + Performance indicators: A set of three colored dots that indicate the rendering + speed of this View relative to other View objects in the tree. The three dots + represent (from left to right) the measure, layout, and draw times of the rendering. +

    + The colors indicate the following relative performance: +

    + +
  8. +
  9. + View index: The zero-based index of the View in its parent View. If it is the only child, + this is 0. +
  10. +
+

+ When you select a node, additional information for the View appears in a small window above + the node. When you click one of the nodes, you see the following: +

+ +

+ An annotated screenshot of an individual node in the Tree View window appears in figure 3. +

+ +

Figure 3. An annotated node in Tree View

+

Debugging with View Hierarchy

+

+ The View Hierarchy window helps you debug an application by providing a static display + of the UI. The display starts with your application's opening screen. As you step through + your application, the display remains unchanged until you redraw it by invalidating and + then requesting layout for a View. +

+

+ To redraw a View in the display: +

+ +

+ Manually redrawing a View allows you to watch the View object tree and examine the properties of + individual View objects one step at a time as you go through breakpoints in your code. +

+

Optimizing with View Hierarchy

+

+ View Hierarchy also helps you identify slow render performance. You start by looking at the + View nodes with red or yellow performance indicators to identify the slower View objects. As you + step through your application, you can judge if a View is consistently slow or slow only in + certain circumstances. +

+

+ Remember that slow performance is not necessarily evidence of a problem, especially for + ViewGroup objects. View objects that have more children and more complex View objects render + more slowly. +

+

+ The View Hierarchy window also helps you find performance issues. Just by looking at the + performance indicators (the dots) for each View node, you can see which View objects are the + slowest to measure, layout, and draw. From that, you can quickly identify the problems you + should look at first. +

+

Examining and Designing User Interfaces with Pixel Perfect

+

+ Pixel Perfect is a tool for examining pixel properties and laying out UIs from a design drawing. +

+

About the Pixel Perfect window

+

+ The Pixel Perfect window displays a magnified image of the screen that is currently + visible on the emulator or device. In it, you can examine the properties + of individual pixels in the screen image. You can also use the Pixel Perfect window + to help you lay out your application UI based on a bitmap design. +

+

+ To see the Pixel Perfect window, run Hierarchy Viewer, as described in + the section Running Hierarchy Viewer and choosing a window. Next, click + Inspect Screenshot at the top of the device window. The Pixel Perfect window + appears. +

+

+ In it, you see three panes: +

+ +

+ The panes are not automatically refreshed when you change one of the View objects or go to + another Activity. To refresh the Pixel Perfect pane and the Loupe pane, click + Refresh Screenshot at the top of the window. This will change the panes + to reflect the current screen image. You still may need to refresh the View Object pane; + to do this, click Refresh Tree at the top of the window. +

+

+ To automatically refresh the panes while you are debugging, set + Auto Refresh at the top of the window, and then set a refresh rate + with the Refresh Rate slider at the bottom of the Loupe pane. +

+

Working with Pixel Perfect overlays

+

+ You often construct a UI based on a design done as a bitmap image. The Pixel Perfect window + helps you match up your View layout to a bitmap image by allowing you to load the bitmap as an + overlay on the screen image. +

+

+ To use a bitmap image as an overlay: +

+ +

+ The overlay is not saved as part of the screenshot when you save the screen image as a PNG + file. +

+

+ A screenshot of the Pixel Perfect window appears in figure 4. +

+ -

Figure 1. Screenshot of Hierarchy Viewer

+ height="600"/> +

Figure 4. The Pixel Perfect window

+

Optimizing layouts with layoutopt

+

+ The layoutopt tool lets you analyze the XML files that define your + application's UI to find inefficiencies in the view hierarchy.

-

Select a node in the Tree View to display the properties of that element in the Properties - View. When a node is selected, the Wire-frame View also indicates the bounds of the element with - a red rectangle. Double click a node in the tree (or select it, and click Display - View) to open a new window with a rendering of that element.

- -

The Layout View includes a couple other helpful features for debugging your layout: - Invalidate and Request Layout. These buttons execute the - respective View calls, {@link android.view.View#invalidate()} and {@link - android.view.View#requestLayout()}, on the View element currently selected in the tree. Calling - these methods on any View can be very useful when simultaneously running a debugger on your - application.

- -

The Tree View can be resized by adjusting the zoom slider, below the diagram. The number of - View elements in the window is also given here. You should look for ways to minimize the number - of Views. The fewer View elements there are in a window, the faster it will perform.

- -

If you interact with the device and change the focused View, the diagram will not - automatically refresh. You must reload the Layout View by clicking Load View - Hierarchy.

- -

Pixel Perfect View

- -

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 - aesthetic qualities. It has three views:

- -
- - -

Click on an element in the Explorer View and a "layout box" will be drawn in the Normal View - to indicate the layout position of that element. The layout box uses multiple rectangles, to - indicate the normal bounds, the padding and the margin (as needed). The purple or green rectangle - indicates the normal bounds of the element (the height and width). The inner white or black - rectangle indicates the content bounds, when padding is present. A black or white rectangle - outside the normal purple/green rectangle indicates any present margins. (There are two colors - for each rectangle, in order to provide the best contrast based on the colors currently in the - background.)

- -

A very handy feature for designing your UI is the ability to overlay an image in the Normal - and Loupe Views. For example, you might have a mock-up image of how you'd like to layout your - interface. By selecting Load... from the controls in the Normal View, you can - choose the image from your computer and it will be placed atop the preview. Your chosen image - will anchor at the bottom left corner of the screen. You can then adjust the opacity of the - overlay and begin fine-tuning your layout to match the mock-up.

- -

The Normal View and Loupe View refresh at regular intervals (5 seconds by default), but the - Explorer View does not. If you navigate away and focus on a different View, then you should - refresh the Explorer's hierarchy by clicking Load View Hierarchy. This is even - true when you're working in a window that holds multiple Views that are not always visible. If - you do not, although the previews will refresh, clicking a View in the Explorer will not provide - the proper layout box in the Normal View, because the hierarchy believes you are still focused on - the prior View.

- -

Optional controls include:

- - - -

Optimizing layouts with layoutopt

-

The layoutopt tool lets you analyze the XML files that represent your application's layout - and finds ineffiencies in the view hierarchy.

- -

To run the tool, open a terminal and launch layoutopt <resources> from your - SDK tools/ directory. In the command, supply a list of uncompiled resource xml files - or directories that you want to analyze.

- -

When run, the tool loads the specified XML files and analyzes their layout structures and - hierarchies according to a set of predefined rules. If it detects issues, it outputs information - about the issues, giving filename, line numbers, description of issue, and for some types of - issues a suggested resolution.

- -

Here's an example of the output:

-
+

+ To run the tool, open a terminal and launch layoutopt <xmlfiles> + from your SDK tools/ directory. The <xmlfiles> argument is a space- + delimited list of resources you want to analyze, either uncompiled resource xml files or + directories of such files. +

+

+ The tool loads the specified XML files and analyzes their definitions and + hierarchies according to a set of predefined rules. For every issue it detects, it + displays the following information: +

+ +

The following is a sample of the output from the tool:

+
 $ layoutopt samples/
 samples/compound.xml
    7:23 The root-level <FrameLayout/> can be replaced with <merge/>
@@ -188,15 +524,3 @@ samples/useless.xml
    7:19 The root-level <FrameLayout/> can be replaced with <merge/>
    11:17 This LinearLayout layout or its FrameLayout parent is useless
 
- -

-For more information on running the tool, see the -layoutopt reference.

- - - - - - - - diff --git a/docs/html/images/developing/hv_device_window.png b/docs/html/images/developing/hv_device_window.png new file mode 100644 index 0000000000000..2bb80a8be1a68 Binary files /dev/null and b/docs/html/images/developing/hv_device_window.png differ diff --git a/docs/html/images/developing/hv_pixelperfect.png b/docs/html/images/developing/hv_pixelperfect.png new file mode 100644 index 0000000000000..6d191199ac7f8 Binary files /dev/null and b/docs/html/images/developing/hv_pixelperfect.png differ diff --git a/docs/html/images/developing/hv_treeview_screenshot.png b/docs/html/images/developing/hv_treeview_screenshot.png new file mode 100644 index 0000000000000..c0e7ac59b24f8 Binary files /dev/null and b/docs/html/images/developing/hv_treeview_screenshot.png differ diff --git a/docs/html/images/developing/hv_view_hierarchy_window.png b/docs/html/images/developing/hv_view_hierarchy_window.png new file mode 100644 index 0000000000000..0d8b2637a0b2b Binary files /dev/null and b/docs/html/images/developing/hv_view_hierarchy_window.png differ