11page.title=ADT Plugin for Eclipse
2- sdk.preview=0
3- adt.zip.version=8.0.1
4- adt.zip.download=ADT-8.0.1.zip
5- adt.zip.bytes=8724909
6- adt.zip.checksum=0e62185279083ddc01f18098ce7ba2d1
2+ adt.zip.version=9.0.0
3+ adt.zip.download=ADT-9.0.0.zip
4+ adt.zip.bytes=4433536
5+ adt.zip.checksum=bc2757f2a5a11d131390ce547bae154b
76
87@jd:body
98
@@ -100,6 +99,115 @@ padding: .25em 1em;
10099 <a href="#" onclick="return toggleDiv(this)">
101100 <img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-img" height="9px"
102101width="9px" />
102+ ADT 9.0.0</a> <em>(January 2011)</em>
103+ <div class="toggleme">
104+
105+ <dl>
106+
107+ <dt>Dependencies:</dt>
108+
109+ <dd>ADT 9.0.0 is designed for use with SDK Tools r9. If you haven't
110+ already installed SDK Tools r9 into your SDK, use the Android SDK and AVD Manager to do
111+ so.</dd>
112+
113+ <dt>General notes:</dt>
114+ <dd>
115+ <ul>
116+ <li>"Go To Declaration" hyperlink support: You can jump directly from code references (such as
117+ <code>R.id.main</code>) to the corresponding XML declaration, or from XML attributes (such as
118+ <code>@string</code>) to the corresponding resource definition, or from manifest XML
119+ registrations to activities and services.</li>
120+ <li>Improvements were made to name refactoring.</li>
121+ <li>AVDs now automatically save their state, so they can restart almost instantly. You can enable this feature when
122+ creating an AVD or by editing an AVD with the AVD Manager.</li>
123+ <li>Improvements to the Visual Layout Editor:
124+ <ul>
125+ <li>Support for rendering targets: You can now choose an arbitrary Android platform to
126+ render the current page, regardless of the project's minimum platform. This makes it
127+ easy to verify the layout and appearance of your activity on different versions of
128+ the platform.
129+ </li>
130+ <li>Improved support for empty and nested layouts: Dragging items over nested and
131+ invisible layouts automatically enlarges and highlights these layouts, so that they
132+ can receive drops.
133+ </li>
134+ <li>XML formatting improvements: The editor generates cleaner XML and you can now enable
135+ XML auto-formatting in the <strong>Preferences</strong> menu.</li>
136+ <li>Improved Outline labels: The Outline tab now displays additional information about each
137+ View. Textual Views display a snippet of the actual text. Views with a source
138+ (such as ImageView) displays the resource name. Included Views display the name of the View.
139+ </li>
140+ <li>When you right click a View in the Layout Editor,
141+ the context menu now contains <strong>Edit ID...</strong> and <strong>Edit Text...</strong>
142+ items. The <strong>Properties...</strong> context menus now list all of the properties and
143+ provide a way to edit them
144+ (<a href="http://tools.android.com/recent/editidtextandotherpropertiesviamenu">Details</a>).
145+ </li>
146+ <li>The layout editor now properly handles
147+ <a href="{@docRoot}guide/topics/resources/layout-resource.html#include-element"><code><include></code></a>
148+ and <a href="{@docRoot}guide/topics/resources/layout-resource.html#merge-element"><code><merge></code></a>
149+ tags (<a href="http://tools.android.com/recent/supportforincludeandmerge">Details</a>).</li>
150+ <li>"Extract as Include" refactoring: The Layout Editor has a new refactoring that allows
151+ you to select one or more views in a layout, and extract it into a separate layout
152+ (<a href="http://tools.android.com/recent/extractasincluderefactoring">Details</a>).</li>
153+ <li>Improved diagnostics for class loading and rendering errors: Class loading and rendering
154+ error messages are more useful and provide better information about the root cause of the
155+ error.</li>
156+ <li>Improved error handling to prevent drag and reordering operations from adding children
157+ into an {@link android.widget.AdapterView}.</li>
158+ <li>Outline reordering: Reordering your views in the Outline tab is much easier
159+ (<a href="http://tools.android.com/recent/outlineimprovements">Details</a>).</li>
160+ <li>Fix for keybinding bug where keyboard shortcuts did not work (Issues
161+ <a href="http://code.google.com/p/android/issues/detail?id=13231">13231</a> and
162+ <a href="http://code.google.com/p/android/issues/detail?id=13134">13134</a>).</li>
163+ <li>Fix for problems with Custom layout attribute menu (Issue
164+ <a href="http://code.google.com/p/android/issues/detail?id=13134">13134</a>).</li>
165+ <li>Automatic configuration for various view types: Certain views have properties configured
166+ by default. For example, the width of an {@link android.widget.EditText} object is set to
167+ <code>match_parent</code> when added to a vertical {@link android.widget.LinearLayout}
168+ or a default image is added to an {@link android.widget.ImageButton}.</li>
169+ <li>Previews during dragging: Dragging from the palette or dragging within the layout editor
170+ now shows live previews of the dragged item.</li>
171+ <li>Navigation improvements: In the Layout Editor, double-clicking Views jumps to the
172+ corresponding XML element. In the Outline view, double-clicking opens the Properties view.</li>
173+ <li>The editor has Honeycomb style animation preview support.</li>
174+ <li>Improved rendering support for various Views (such as TabHosts and SlidingDrawers) in
175+ Honeycomb (Issues <a href="http://code.google.com/p/android/issues/detail?id=3162">3162</a>
176+ and <a href="http://code.google.com/p/android/issues/detail?id=13092">13092</a>).</li>
177+ <li>Included layouts can be rendered and edited in the context of the layouts that include
178+ them. From a layout using an <a href="{@docRoot}guide/topics/resources/layout-resource.html#include-element">
179+ <code><include></code></a> tag, double-clicking on the
180+ <a href="{@docRoot}guide/topics/resources/layout-resource.html#include-element">
181+ <code><include></code></a> element edits the referenced layout in the context of the
182+ current layout. Additionally, when editing a layout that is included by other layouts,
183+ you can quickly change between context layouts, by right clicking in the editor and choosing
184+ <strong>Show included in...</strong>. This feature is only available in Honeycomb.</li>
185+ </ul>
186+ </li>
187+ <li>This release fixes many other bugs, but the most important ones are listed below:
188+ <ul>
189+ <li>Fixed issue that prevented launching debug builds on productions devices when
190+ <code>debuggable=true</code> was not set in the Android manifest.</li>
191+ <li>The LogCat view in DDMS properly handles UTF-8 characters.</li>
192+ <li>The SDK Manager is more reliable on Windows
193+ (<a href="http://tools.android.com/recent/sdkmanagerfixes">Details</a>).</li>
194+ <li>A JUnit initialization bug that prevented you from working with JUnit tests was fixed
195+ (Issue <a href="http://code.google.com/p/android/issues/detail?id=12411">12411</a>).</li>
196+ </ul>
197+ </li>
198+ </ul>
199+ </dd>
200+ </dl>
201+ </div>
202+ </div>
203+
204+
205+
206+
207+ <div class="toggleable closed">
208+ <a href="#" onclick="return toggleDiv(this)">
209+ <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-img" height="9px"
210+ width="9px" />
103211ADT 8.0.1</a> <em>(December 2010)</em>
104212 <div class="toggleme">
105213
@@ -121,7 +229,7 @@ so.</p></dd>
121229<p>Also see the recent release notes for 8.0.0, below.</p>
122230</dd>
123231</dl>
124- </div>
232+ </div>
125233</div>
126234
127235
0 commit comments