page.title=Hello, Views @jd:body <style> .view {float:left; margin:10px; font-size:120%; font-weight:bold;} #jd-content .view img {border:1px solid black; margin:8px 0 0 0; padding:5px;} </style> <p>This is a collection of "Hello World"-style tutorials designed to get you started quickly with common Android layouts and widgets.</p> <p>A certain amount of knowledge is assumed for these tutorials. Before you start, you should have completed the <a href="{@docRoot}resources/tutorials/hello-world.html">Hello, World</a> tutorial—it will teach you several things about basic Android development. More specifically, you should know:</p> <ul> <li>How to create an Android project and run it</li> <li>The basic structure of an Android project (resource files, layout files, etc.)</li> <li>The basic components of an {@link android.app.Activity}</li> </ul> <p class="note"><strong>Note:</strong> In order to make these tutorials as simple as possible, some code may not conform to best practices for coding Android applications. In particular, hard-coded strings are used in places, when the better practice is to reference strings from a <code>res/values/strings.xml</code> resource file.</p> <p class="note"><strong>Tip:</strong> After you have pasted sample code into an Eclipse project, press <strong>Ctrl (or Cmd) + Shift + O</strong> to import the required packages.</p> <h2>Layouts</h2> <div class="view"> <a href="hello-linearlayout.html">Linear Layout</a><br/> <a href="hello-linearlayout.html"><img src="images/hello-linearlayout.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-relativelayout.html">Relative Layout</a><br/> <a href="hello-relativelayout.html"><img src="images/hello-relativelayout.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-tablelayout.html">Table Layout</a><br/> <a href="hello-tablelayout.html"><img src="images/hello-tablelayout.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-gridview.html">Grid View</a><br/> <a href="hello-gridview.html"><img src="images/hello-gridview.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-tabwidget.html">Tab Layout</a><br/> <a href="hello-tabwidget.html"><img src="images/hello-tabwidget.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-listview.html">List View</a><br/> <a href="hello-listview.html"><img src="images/hello-listview.png" height="285" width="200" /></a> </div> <p style="clear:left"> </p> <h2>Widgets & Other Views</h2> <div class="view"> <a href="hello-datepicker.html">Date Picker</a><br/> <a href="hello-datepicker.html"><img src="images/hello-datepicker.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-timepicker.html">Time Picker</a><br/> <a href="hello-timepicker.html"><img src="images/hello-timepicker.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-formstuff.html">Form Stuff</a><br/> <a href="hello-formstuff.html"><img src="images/hello-formstuff.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-spinner.html">Spinner</a><br/> <a href="hello-spinner.html"><img src="images/hello-spinner.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-autocomplete.html">Auto Complete</a><br/> <a href="hello-autocomplete.html"><img src="images/hello-autocomplete.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-gallery.html">Gallery</a><br/> <a href="hello-gallery.html"><img src="images/hello-gallery.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-mapview.html">Google Map View</a><br/> <a href="hello-mapview.html"><img src="images/hello-mapview.png" height="285" width="200" /></a> </div> <div class="view"> <a href="hello-webview.html">Web View</a><br/> <a href="hello-webview.html"><img src="images/hello-webview.png" height="285" width="200" /></a> </div> <p class="note" style="clear:left"> There are plenty more layouts and widgets available. See the {@link android.view.View} class for more on View layouts, and the {@link android.widget widget package} for more useful widgets. And for more raw code samples, visit the <a href="{@docRoot}resources/samples/ApiDemos/src/com/example/android/apis/view/index.html">Api Demos</a>.</p>