0% found this document useful (0 votes)
45 views1 page

Posicionamento Textview Edittext

The document describes a LinearLayout in Android with horizontal orientation that fills the parent width and wraps the content height. It contains a TextView with text "IP do Servidor:" and an EditText to input the server IP that fills the remaining parent width.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views1 page

Posicionamento Textview Edittext

The document describes a LinearLayout in Android with horizontal orientation that fills the parent width and wraps the content height. It contains a TextView with text "IP do Servidor:" and an EditText to input the server IP that fills the remaining parent width.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

http://www.guj.com.br/java/267343-por-favor-qual-layout-me-deixa-posi...

view plaincopy to clipboardprint?

1. <LinearLayout android:id="@+id/linearLayoutIpServer"
2. android:orientation="horizontal" android:layout_width="fill_parent"
3. android:layout_height="wrap_content">
4. <TextView android:layout_width="wrap_content"
5. android:paddingRight="10px" android:layout_height="wrap_content"
6. android:text="IP do Servidor: " />
7. <EditText android:id="@+id/editTextIpServer"
8. android:layout_width="fill_parent" android:layout_height="wrap_content"></EditText>
9. </LinearLayout>

1 de 1 10/12/2015 23:16

You might also like