1 page.title=Building a Simple User Interface 2 trainingnavtop=true 3 4 page.tags=ui 5 helpoutsWidget=true 6 7 @jd:body 8 9 10 <!-- This is the training bar --> 11 <div id="tb-wrapper"> 12 <div id="tb"> 13 14 <h2>This lesson teaches you to</h2> 15 16 <ol> 17 <li><a href="#LinearLayout">Create a Linear Layout</a></li> 18 <li><a href="#TextInput">Add a Text Field</a></li> 19 <li><a href="#Strings">Add String Resources</a></li> 20 <li><a href="#Button">Add a Button</a></li> 21 <li><a href="#Weight">Make the Input Box Fill in the Screen Width</a></li> 22 </ol> 23 24 25 <h2>You should also read</h2> 26 <ul> 27 <li><a href="{@docRoot}guide/topics/ui/declaring-layout.html">Layouts</a></li> 28 </ul> 29 30 </div> 31 </div> 32 33 <p>In this lesson, you create a layout in XML that includes a text field and a 34 button. In the next lesson, your app responds when the button is pressed by sending the 35 content of the text field to another activity.</p> 36 37 <p>The graphical user interface for an Android app is built using a hierarchy of {@link 38 android.view.View} and {@link android.view.ViewGroup} objects. {@link android.view.View} objects are 39 usually UI widgets such as <a href="{@docRoot}guide/topics/ui/controls/button.html">buttons</a> or 40 <a href="{@docRoot}guide/topics/ui/controls/text.html">text fields</a>. 41 {@link android.view.ViewGroup} objects are 42 invisible view containers that define how the child views are laid out, such as in a 43 grid or a vertical list.</p> 44 45 <p>Android provides an XML vocabulary that corresponds to the subclasses of {@link 46 android.view.View} and {@link android.view.ViewGroup} so you can define your UI in XML using 47 a hierarchy of UI elements.</p> 48 49 <p>Layouts are subclasses of the {@link android.view.ViewGroup}. In this exercise, you'll work with 50 a {@link android.widget.LinearLayout}.</p> 51 52 <div class="sidebox-wrapper"> 53 <div class="sidebox"> 54 <h2>Alternative Layouts</h2> 55 <p>Declaring your UI layout in XML rather than runtime code is useful for several reasons, 56 but it's especially important so you can create different layouts for 57 different screen sizes. For example, you can create two versions of a layout and tell 58 the system to use one on "small" screens and the other on "large" screens. For more information, 59 see the class about <a 60 href="{@docRoot}training/basics/supporting-devices/index.html">Supporting Different 61 Devices</a>.</p> 62 </div> 63 </div> 64 65 <img src="{@docRoot}images/viewgroup.png" alt="" width="400" height="214" /> 66 <p class="img-caption"><strong>Figure 1.</strong> Illustration of how {@link 67 android.view.ViewGroup} objects form branches in the layout and contain other {@link 68 android.view.View} objects.</p> 69 70 71 <h2 id="LinearLayout">Create a Linear Layout</h2> 72 73 <ol> 74 <li>In Android Studio's <b>Project</b> window, open <b>app > res > 75 layout > activity_main.xml</b>. 76 <p>This XML file defines the layout of your activity. It contains the 77 default "Hello World" text view.</p> 78 </li> 79 <li>When you open a layout file, youre first shown the design editor in the 80 <a href="/studio/write/layout-editor.html">Layout Editor</a>. For this lesson, 81 you work directly with the XML, so click the <b>Text</b> tab at the bottom 82 of the window to switch to the text editor. 83 </li> 84 <li>Delete everything and insert the following XML: 85 <pre><?xml version="1.0" encoding="utf-8"?> 86 <LinearLayout 87 xmlns:android="http://schemas.android.com/apk/res/android" 88 xmlns:tools="http://schemas.android.com/tools" 89 android:layout_width="match_parent" 90 android:layout_height="match_parent" 91 android:orientation="horizontal"> 92 </LinearLayout> 93 </pre> 94 95 </li> 96 97 </ol> 98 99 <p>{@link android.widget.LinearLayout} is a view group (a subclass of {@link 100 android.view.ViewGroup}) that lays out child views in either a vertical or horizontal orientation, 101 as specified by the <a 102 href="{@docRoot}reference/android/widget/LinearLayout.html#attr_android:orientation">{@code 103 android:orientation}</a> attribute. Each child of a {@link android.widget.LinearLayout} appears on 104 the screen in the order in which it appears in the XML.</p> 105 106 <p>Two other attributes, <a 107 href="{@docRoot}reference/android/view/View.html#attr_android:layout_width">{@code 108 android:layout_width}</a> and <a 109 href="{@docRoot}reference/android/view/View.html#attr_android:layout_height">{@code 110 android:layout_height}</a>, are required for all views in order to specify their size.</p> 111 112 <p>Because the {@link android.widget.LinearLayout} is the root view in the layout, it should fill 113 the entire screen area that's 114 available to the app by setting the width and height to 115 <code>"match_parent"</code>. This value declares that the view should expand its width 116 or height to <em>match</em> the width or height of the parent view.</p> 117 118 <p>For more information about layout properties, see the <a 119 href="{@docRoot}guide/topics/ui/declaring-layout.html">Layout</a> guide.</p> 120 121 122 <h2 id="TextInput">Add a Text Field</h2> 123 124 <p>In the <code>activity_main.xml</code> file, within the 125 {@link android.widget.LinearLayout <LinearLayout>} element, add the following 126 {@link android.widget.EditText <EditText>} element:</p> 127 128 <pre><LinearLayout 129 xmlns:android="http://schemas.android.com/apk/res/android" 130 xmlns:tools="http://schemas.android.com/tools" 131 android:layout_width="match_parent" 132 android:layout_height="match_parent" 133 android:orientation="horizontal"> 134 <b><EditText android:id="@+id/edit_message" 135 android:layout_width="wrap_content" 136 android:layout_height="wrap_content" 137 android:hint="@string/edit_message" /></b> 138 </LinearLayout> 139 </pre> 140 141 <p>Don't worry about the error that appears for 142 <code>@string/edit_message</code>; you'll fix that soon.</p> 143 144 <p>Here is a description of the attributes in the 145 {@link android.widget.EditText <EditText>} you added:</p> 146 147 <dl> 148 <dt><a href="{@docRoot}reference/android/view/View.html#attr_android:id">{@code android:id}</a></dt> 149 <dd>This provides a unique identifier for the view, which you can use to reference the object 150 from your app code, such as to read and manipulate the object (you'll see this in the next 151 lesson). 152 153 <p>The at sign (<code>@</code>) is required when you're referring to any resource object from 154 XML. It is followed by the resource type ({@code id} in this case), a slash, then the resource name 155 ({@code edit_message}).</p> 156 157 <div class="sidebox-wrapper"> 158 <div class="sidebox"> 159 <h3>Resource Objects</h3> 160 <p>A resource object is a unique integer name that's associated with an app resource, 161 such as a bitmap, layout file, or string.</p> 162 <p>Every resource has a 163 corresponding resource object defined in your project's {@code R.java} file. You can use the 164 object names in the {@code R} class to refer to your resources, such as when you need to specify a 165 string value for the <a 166 href="{@docRoot}reference/android/widget/TextView.html#attr_android:hint">{@code android:hint}</a> 167 attribute. You can also create arbitrary resource IDs that you associate with a view using the <a 168 href="{@docRoot}reference/android/view/View.html#attr_android:id">{@code android:id}</a> attribute, 169 which allows you to reference that view from other code.</p> 170 <p>The SDK tools generate the {@code R.java} file each time you compile your app. You should never 171 modify this file by hand.</p> 172 <p>For more information, read the guide to <a 173 href="{@docRoot}guide/topics/resources/providing-resources.html">Providing Resources</a>.</p> 174 </div> 175 </div> 176 177 <p>The plus sign (<code>+</code>) before the resource type is needed only when you're defining a 178 resource ID for the first time. When you compile the app, 179 the SDK tools use the ID name to create a new resource ID in 180 your project's {@code R.java} file that refers to the {@link 181 android.widget.EditText} element. With the resource ID declared once this way, 182 other references to the ID do not 183 need the plus sign. Using the plus sign is necessary only when specifying a new resource ID and not 184 needed for concrete resources such as strings or layouts. See the sidebox for 185 more information about resource objects.</p></dd> 186 187 <dt><a 188 href="{@docRoot}reference/android/view/View.html#attr_android:layout_width">{@code 189 android:layout_width}</a> and <a 190 href="{@docRoot}reference/android/view/View.html#attr_android:layout_height">{@code 191 android:layout_height}</a></dt> 192 <dd>Instead of using specific sizes for the width and height, the <code>"wrap_content"</code> value 193 specifies that the view should be only as big as needed to fit the contents of the view. If you 194 were to instead use <code>"match_parent"</code>, then the {@link android.widget.EditText} 195 element would fill the screen, because it would match the size of the parent {@link 196 android.widget.LinearLayout}. For more information, see the <a 197 href="{@docRoot}guide/topics/ui/declaring-layout.html">Layouts</a> guide.</dd> 198 199 <dt><a 200 href="{@docRoot}reference/android/widget/TextView.html#attr_android:hint">{@code 201 android:hint}</a></dt> 202 <dd>This is a default string to display when the text field is empty. Instead of using a hard-coded 203 string as the value, the {@code "@string/edit_message"} value refers to a string resource defined in 204 a separate file. Because this refers to a concrete resource (not just an identifier), it does not 205 need the plus sign. However, because you haven't defined the string resource yet, youll see a 206 compiler error at first. You'll fix this in the next section by defining the string. 207 <p class="note"><strong>Note:</strong> This string resource has the same name as the element ID: 208 {@code edit_message}. However, references 209 to resources are always scoped by the resource type (such as {@code id} or {@code string}), so using 210 the same name does not cause collisions.</p> 211 </dd> 212 </dl> 213 214 <h2 id="Strings">Add String Resources</h2> 215 216 <p>By default, your Android project includes a string resource file at 217 <b>res > values > strings.xml</b>. Here, you'll add two new strings.</p> 218 219 <ol> 220 <li>From the <b>Project</b> window, open <b>res > values > strings.xml</b>.</li> 221 <li>Add two strings so that your file looks like this: 222 <pre><?xml version="1.0" encoding="utf-8"?> 223 <resources> 224 <string name="app_name">My First App</string> 225 <b><string name="edit_message">Enter a message</string> 226 <string name="button_send">Send</string></b> 227 </resources> 228 </pre> 229 </li> 230 </ol> 231 232 <p>For text in the user interface, always specify each string as 233 a resource. String resources allow you to manage all UI text in a single location, 234 which makes the text easier to find and update. Externalizing the strings also allows you to 235 localize your app to different languages by providing alternative definitions for each 236 string resource.</p> 237 238 <p>For more information about using string resources to localize your app for other languages, 239 see the <a 240 href="{@docRoot}training/basics/supporting-devices/index.html">Supporting Different Devices</a> 241 class.</p> 242 243 244 <h2 id="Button">Add a Button</h2> 245 246 <p>Go back to the <code>activity_main.xml</code> file and add a button after the 247 {@link android.widget.EditText <EditText>}. Your file should look like this:</p> 248 <pre><LinearLayout 249 xmlns:android="http://schemas.android.com/apk/res/android" 250 xmlns:tools="http://schemas.android.com/tools" 251 android:orientation="horizontal" 252 android:layout_width="match_parent" 253 android:layout_height="match_parent"> 254 <EditText android:id="@+id/edit_message" 255 android:layout_width="wrap_content" 256 android:layout_height="wrap_content" 257 android:hint="@string/edit_message" /> 258 <b><Button 259 android:layout_width="wrap_content" 260 android:layout_height="wrap_content" 261 android:text="@string/button_send" /></b> 262 </LinearLayout> 263 </pre> 264 265 <p class="note"><strong>Note:</strong> This button doesn't need the 266 <a href="{@docRoot}reference/android/view/View.html#attr_android:id">{@code android:id}</a> 267 attribute, because it won't be referenced from the activity code.</p> 268 269 <p>The layout is currently designed so that both the {@link android.widget.EditText} and {@link 270 android.widget.Button} widgets are only as big as necessary to fit their content, as figure 2 shows. 271 </p> 272 273 <img src="{@docRoot}images/training/firstapp/edittext_wrap.png" /> 274 <p class="img-caption"><strong>Figure 2.</strong> The {@link android.widget.EditText} and {@link 275 android.widget.Button} widgets have their widths set to 276 <code>"wrap_content"</code>.</p> 277 278 <p>This works fine for the button, but not as well for the text field, because the user might type 279 something longer. It would be nice to fill the unused screen width 280 with the text field. You can do this inside a 281 {@link android.widget.LinearLayout} with the <em>weight</em> property, which 282 you can specify using the <a 283 href="{@docRoot}reference/android/widget/LinearLayout.LayoutParams.html#weight">{@code 284 android:layout_weight}</a> attribute.</p> 285 286 <p>The weight value is a number that specifies the amount of remaining space each view should 287 consume, 288 relative to the amount consumed by sibling views. This works kind of like the 289 amount of ingredients in a drink recipe: "2 290 parts soda, 1 part syrup" means two-thirds of the drink is soda. For example, if you give 291 one view a weight of 2 and another one a weight of 1, the sum is 3, so the first view fills 2/3 of 292 the remaining space and the second view fills the rest. If you add a third view and give it a weight 293 of 1, then the first view (with weight of 2) now gets 1/2 the remaining space, while the remaining 294 two each get 1/4.</p> 295 296 <p>The default weight for all views is 0, so if you specify any weight value 297 greater than 0 to only one view, then that view fills whatever space remains after all views are 298 given the space they require.</p> 299 300 <h2 id="Weight">Make the Input Box Fill in the Screen Width</h2> 301 302 <p>In <code>activity_main.xml</code>, modify the 303 {@link android.widget.EditText <EditText>} so that the attributes look like 304 this:</p> 305 306 <pre> 307 <EditText android:id="@+id/edit_message" 308 <b>android:layout_weight="1" 309 android:layout_width="0dp"</b> 310 android:layout_height="wrap_content" 311 android:hint="@string/edit_message" /> 312 </pre> 313 314 <p>Setting the width to zero (0dp) improves layout performance because using 315 <code>"wrap_content"</code> as the width requires the system to calculate a width that is 316 ultimately irrelevant because the weight value requires another width calculation to fill the 317 remaining space.</p> 318 319 <img src="{@docRoot}images/training/firstapp/edittext_gravity.png" /> 320 <p class="img-caption"><strong>Figure 3.</strong> The {@link android.widget.EditText} widget is 321 given all the layout weight, so it fills the remaining space in the {@link 322 android.widget.LinearLayout}.</p> 323 324 <p>Heres how your complete <code>activity_main.xml</code>layout file should now look:</p> 325 326 <pre><?xml version="1.0" encoding="utf-8"?> 327 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 328 xmlns:tools="http://schemas.android.com/tools" 329 android:orientation="horizontal" 330 android:layout_width="match_parent" 331 android:layout_height="match_parent"> 332 <EditText android:id="@+id/edit_message" 333 android:layout_weight="1" 334 android:layout_width="0dp" 335 android:layout_height="wrap_content" 336 android:hint="@string/edit_message" /> 337 <Button 338 android:layout_width="wrap_content" 339 android:layout_height="wrap_content" 340 android:text="@string/button_send" /> 341 </LinearLayout> 342 </pre> 343 344 <h2>Run Your App</h2> 345 346 <p>To see how the app now looks on your device or emulator, 347 click <strong>Run</strong> 348 <img src="{@docRoot}images/tools/as-run.png" 349 style="vertical-align:baseline;margin:0; max-height:1em" /> in the 350 toolbar.</p> 351 352 <p>To add app behaviors such as responding to a button and starting 353 another activity, continue to the <a href="starting-activity.html">next 354 lesson</a>.</p>