Translations:Android Training/Building a Simple User Interface/23/en
Add a Button[edit source]
- In Android Studio, from the
res/layout
directory, edit theactivity_my.xml
file. - Within the
<LinearLayout>
element, define a<Button>
element immediately following the<EditText>
element. - Set the button's width and height attributes to
"wrap_content"
so the button is only as big as necessary to fit the button's text label. - Define the button's text label with the
android:text
attribute; set its value to thebutton_send
string resource you defined in the previous section.
Your <LinearLayout>
should look like this: