page.title=Building a Simple User Interface trainingnavtop=true page.tags=ui helpoutsWidget=true @jd:body
In this lesson, you create a layout in XML that includes a text field and a button. In the next lesson, your app responds when the button is pressed by sending the content of the text field to another activity.
The graphical user interface for an Android app is built using a hierarchy of {@link android.view.View} and {@link android.view.ViewGroup} objects. {@link android.view.View} objects are usually UI widgets such as buttons or text fields. {@link android.view.ViewGroup} objects are invisible view containers that define how the child views are laid out, such as in a grid or a vertical list.
Android provides an XML vocabulary that corresponds to the subclasses of {@link android.view.View} and {@link android.view.ViewGroup} so you can define your UI in XML using a hierarchy of UI elements.
Layouts are subclasses of the {@link android.view.ViewGroup}. In this exercise, you'll work with a {@link android.widget.LinearLayout}.
Declaring your UI layout in XML rather than runtime code is useful for several reasons, but it's especially important so you can create different layouts for different screen sizes. For example, you can create two versions of a layout and tell the system to use one on "small" screens and the other on "large" screens. For more information, see the class about Supporting Different Devices.
res/layout
directory, open the {@code content_my.xml}
file.
The BlankActivity template you chose when you created this project includes the
content_my.xml
file with a {@link android.widget.RelativeLayout} root view and a
{@link android.widget.TextView} child view.
In Android Studio, when you open a layout file, you’re first shown the Preview pane. Clicking elements in this pane opens the WYSIWYG tools in the Design pane. For this lesson, you’re going to work directly with the XML.
"horizontal"
.The result looks like this:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:showIn="@layout/activity_my">
{@link android.widget.LinearLayout} is a view group (a subclass of {@link android.view.ViewGroup}) that lays out child views in either a vertical or horizontal orientation, as specified by the {@code android:orientation} attribute. Each child of a {@link android.widget.LinearLayout} appears on the screen in the order in which it appears in the XML.
Two other attributes, {@code android:layout_width} and {@code android:layout_height}, are required for all views in order to specify their size.
Because the {@link android.widget.LinearLayout} is the root view in the layout, it should fill
the entire screen area that's
available to the app by setting the width and height to
"match_parent"
. This value declares that the view should expand its width
or height to match the width or height of the parent view.
For more information about layout properties, see the Layout guide.
As with every {@link android.view.View} object, you must define certain XML attributes to specify the {@link android.widget.EditText} object's properties.
content_my.xml
file, within the
{@link android.widget.LinearLayout <LinearLayout>} element, define an
{@link android.widget.EditText <EditText>} element with the id
attribute
set to @+id/edit_message
.layout_width
and layout_height
attributes as
wrap_content
.hint
attribute as a string object named edit_message
.The {@link android.widget.EditText <EditText>} element should read as follows:
<EditText android:id="@+id/edit_message" android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="@string/edit_message" />
Here are the {@link android.widget.EditText <EditText>} attributes you added:
The at sign (@
) is required when you're referring to any resource object from
XML. It is followed by the resource type ({@code id} in this case), a slash, then the resource name
({@code edit_message}).
A resource object is a unique integer name that's associated with an app resource, such as a bitmap, layout file, or string.
Every resource has a corresponding resource object defined in your project's {@code gen/R.java} file. You can use the object names in the {@code R} class to refer to your resources, such as when you need to specify a string value for the {@code android:hint} attribute. You can also create arbitrary resource IDs that you associate with a view using the {@code android:id} attribute, which allows you to reference that view from other code.
The SDK tools generate the {@code R.java} file each time you compile your app. You should never modify this file by hand.
For more information, read the guide to Providing Resources.
The plus sign (+
) before the resource type is needed only when you're defining a
resource ID for the first time. When you compile the app,
the SDK tools use the ID name to create a new resource ID in
your project's {@code gen/R.java} file that refers to the {@link
android.widget.EditText} element. With the resource ID declared once this way,
other references to the ID do not
need the plus sign. Using the plus sign is necessary only when specifying a new resource ID and not
needed for concrete resources such as strings or layouts. See the sidebox for
more information about resource objects.
"wrap_content"
value
specifies that the view should be only as big as needed to fit the contents of the view. If you
were to instead use "match_parent"
, then the {@link android.widget.EditText}
element would fill the screen, because it would match the size of the parent {@link
android.widget.LinearLayout}. For more information, see the Layouts guide.Note: This string resource has the same name as the element ID: {@code edit_message}. However, references to resources are always scoped by the resource type (such as {@code id} or {@code string}), so using the same name does not cause collisions.
By default, your Android project includes a string resource file at
res/values/strings.xml
. Here, you'll add a new string named
"edit_message"
and set the value to "Enter a message."
res/values
directory, open strings.xml
."edit_message"
with the value, "Enter a message".
"button_send"
with the value, "Send".
You'll create the button that uses this string in the next section.
The result for strings.xml
looks like this:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="app_name">My First App</string> <string name="edit_message">Enter a message</string> <string name="button_send">Send</string> <string name="action_settings">Settings</string> </resources>
For text in the user interface, always specify each string as a resource. String resources allow you to manage all UI text in a single location, which makes the text easier to find and update. Externalizing the strings also allows you to localize your app to different languages by providing alternative definitions for each string resource.
For more information about using string resources to localize your app for other languages, see the Supporting Different Devices class.
res/layout
directory, edit the content_my.xml
file."wrap_content"
so
the button is only as big as necessary to fit the button's text label.button_send
string
resource you defined in the previous section.Your {@link android.widget.LinearLayout <LinearLayout>} should look like this:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:showIn="@layout/activity_my"> <EditText android:id="@+id/edit_message" android:layout_width="wrap_content" android:layout_height="wrap_content" android:hint="@string/edit_message" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button_send" /> </LinearLayout>
Note: This button doesn't need the {@code android:id} attribute, because it won't be referenced from the activity code.
The layout is currently designed so that both the {@link android.widget.EditText} and {@link android.widget.Button} widgets are only as big as necessary to fit their content, as Figure 2 shows.
This works fine for the button, but not as well for the text field, because the user might type something longer. It would be nice to fill the unused screen width with the text field. You can do this inside a {@link android.widget.LinearLayout} with the weight property, which you can specify using the {@code android:layout_weight} attribute.
The weight value is a number that specifies the amount of remaining space each view should consume, relative to the amount consumed by sibling views. This works kind of like the amount of ingredients in a drink recipe: "2 parts soda, 1 part syrup" means two-thirds of the drink is soda. For example, if you give 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 the remaining space and the second view fills the rest. If you add a third view and give it a weight of 1, then the first view (with weight of 2) now gets 1/2 the remaining space, while the remaining two each get 1/4.
The default weight for all views is 0, so if you specify any weight value greater than 0 to only one view, then that view fills whatever space remains after all views are given the space they require.
To fill the remaining space in your layout with the {@link android.widget.EditText} element, do the following:
content_my.xml
file, assign the
{@link android.widget.EditText <EditText>} element's layout_weight
attribute a value
of 1
.layout_width
attribute a value of 0dp
.
<EditText android:layout_weight="1" android:layout_width="0dp" ... />
To improve the layout efficiency when you specify the weight, you should change the
width of the {@link android.widget.EditText} to be
zero (0dp). Setting the width to zero improves layout performance because using
"wrap_content"
as the width requires the system to calculate a width that is
ultimately irrelevant because the weight value requires another width calculation to fill the
remaining space.
Figure 3 shows the result when you assign all weight to the {@link android.widget.EditText} element.
Here’s how your complete content_my.xml
layout file should now look:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" tools:showIn="@layout/activity_my"> <EditText android:id="@+id/edit_message" android:layout_weight="1" android:layout_width="0dp" android:layout_height="wrap_content" android:hint="@string/edit_message" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/button_send" /> </LinearLayout>
This layout is applied by the default {@link android.app.Activity} class that the SDK tools generated when you created the project.
To run the app and see the results, click Run 'app' in the toolbar.
Continue to the next lesson to learn how to respond to button presses, read content from the text field, start another activity, and more.