The question is: I have a TextView and an EditText, how can I place them on the same \"level\"?
http://postimage.org/image/o9l17a3zv/
As you can see, I want to p
TEXT VIEW AND EDIT TEXT ARE ON THE SAME LINE TOUCHING THE BOTTOM LINE OF PARENT LAYOUT Try this one.
android:layout_alignBottom="@+id/editText1"
This will surely help you.
Thanks.