@@ -57,9 +57,9 @@ cannot be overridden by the components.</dd>
5757<dt><a name="reparent"></a>{@code android:allowTaskReparenting}</dt>
5858<dd>Whether or not activities that the application defines can move from
5959the task that started them to the task they have an affinity for when that task
60- is next brought to the front — " {@code true}" if they can move, and
61- " {@code false}" if they must remain with the task where they started.
62- The default value is " {@code false}" .
60+ is next brought to the front — {@code " true"} if they can move, and
61+ {@code " false"} if they must remain with the task where they started.
62+ The default value is {@code " false"} .
6363
6464<p>
6565The
@@ -73,9 +73,9 @@ information.
7373<dt><a name="agent"></a>{@code android:backupAgent}</dt>
7474<dd>The name of the class that implement's the application's backup agent,
7575a subclass of {@link android.app.backup.BackupAgent}. The attribute value should be
76- a fully qualified class name (such as, " {@code com.example.project.MyBackupAgent}" ).
76+ a fully qualified class name (such as, {@code " com.example.project.MyBackupAgent"} ).
7777However, as a shorthand, if the first character of the name is a period
78- (for example, " {@code .MyBackupAgent}" ), it is appended to the
78+ (for example, {@code " .MyBackupAgent"} ), it is appended to the
7979package name specified in the
8080<code><a href="{@docRoot}guide/topics/manifest/manifest-element.html"><manifest></a></code>
8181element.
@@ -86,29 +86,29 @@ There is no default. The name must be specified.
8686
8787<dt><a name="debug"></a>{@code android:debuggable}</dt>
8888<dd>Whether or not the application can be debugged, even when running
89- on a device in user mode — " {@code true}" if it can be, and " {@code false}"
90- if not. The default value is " {@code false}" .</dd>
89+ on a device in user mode — {@code " true"} if it can be, and {@code " false"}
90+ if not. The default value is {@code " false"} .</dd>
9191
9292<dt><a name="desc"></a>{@code android:description}</dt>
9393<dd>User-readable text about the application, longer and more descriptive than the application label. The value must be set as a reference to a string resource. Unlike the label, it cannot be a raw string. There is no default value.</dd>
9494
9595<dt><a name="enabled"></a>{@code android:enabled}</dt>
9696<dd>Whether or not the Android system can instantiate components of
97- the application — " {@code true}" if it can, and " {@code false}"
98- if not. If the value is " {@code true}" , each component's
97+ the application — {@code " true"} if it can, and {@code " false"}
98+ if not. If the value is {@code " true"} , each component's
9999{@code enabled} attribute determines whether that component is enabled
100- or not. If the value is " {@code false}" , it overrides the
100+ or not. If the value is {@code " false"} , it overrides the
101101component-specific values; all components are disabled.
102102
103103<p>
104- The default value is " {@code true}" .
104+ The default value is {@code " true"} .
105105</p></dd>
106106
107107<dt><a name="code"></a>{@code android:hasCode}</dt>
108- <dd>Whether or not the application contains any code — " {@code true}"
109- if it does, and " {@code false}" if not. When the value is " {@code false}" ,
108+ <dd>Whether or not the application contains any code — {@code " true"}
109+ if it does, and {@code " false"} if not. When the value is {@code " false"} ,
110110the system does not try to load any application code when launching components.
111- The default value is " {@code true}" .
111+ The default value is {@code " true"} .
112112
113113<p>
114114An application would not have any code of its own only if it's using nothing
@@ -118,10 +118,14 @@ android.app.AliasActivity} class, a rare occurrence.</p>
118118
119119<dt><a name="hwaccel"></a>{@code android:hardwareAccelerated}</dt>
120120<dd>Whether or not hardware-accelerated rendering should be enabled for all
121- Activities and Views in this application — "{@code true}" if it
122- should be enabled, and "{@code false}" if not. The default value is "{@code false}".
123-
124- <p>Starting from Android 3.0, a hardware-accelerated OpenGL renderer is
121+ activities and views in this application — {@code "true"} if it
122+ should be enabled, and {@code "false"} if not. The default value is {@code "true"} if you've set
123+ either <a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#min">{@code minSdkVersion}</a>
124+ or <a
125+ href="{@docRoot}guide/topics/manifest/uses-sdk-element.html#target">{@code targetSdkVersion}</a>
126+ to {@code "14"} or higher; otherwise, it's {@code "false"}.
127+
128+ <p>Starting from Android 3.0 (API level 11), a hardware-accelerated OpenGL renderer is
125129available to applications, to improve performance for many common 2D graphics
126130operations. When the hardware-accelerated renderer is enabled, most operations
127131in Canvas, Paint, Xfermode, ColorFilter, Shader, and Camera are accelerated.
@@ -132,6 +136,9 @@ the framework's OpenGL libraries. </p>
132136<p>Note that not all of the OpenGL 2D operations are accelerated. If you enable
133137the hardware-accelerated renderer, test your application to ensure that it can
134138make use of the renderer without errors.</p>
139+
140+ <p>For more information, read the <a href="{@docRoot}guide/topics/graphics/hardware-accel.html"
141+ >Hardware Acceleration</a> guide.</p>
135142</dd>
136143
137144<dt><a name="icon"></a>{@code android:icon}</dt>
@@ -146,7 +153,7 @@ each of the application's components. See the individual
146153
147154<p>
148155This attribute must be set as a reference to a drawable resource containing
149- the image (for example {@code "@drawable/icon"}). There is no default icon.
156+ the image (for example {@code "@drawable/icon"}). There is no default icon.
150157</p></dd>
151158
152159<dt><a name="killrst"></a>{@code android:killAfterRestore}</dt>
@@ -233,8 +240,8 @@ Permissions</a>.
233240
234241<dt><a name="persistent"></a>{@code android:persistent}</dt>
235242<dd>Whether or not the application should remain running at all times —
236- " {@code true}" if it should, and " {@code false}" if not. The default value
237- is " {@code false}" . Applications should not normally set this flag;
243+ {@code " true"} if it should, and {@code " false"} if not. The default value
244+ is {@code " false"} . Applications should not normally set this flag;
238245persistence mode is intended only for certain system applications.</dd>
239246
240247<dt><a name="proc"></a>{@code android:process}</dt>
0 commit comments