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
You have to center your text in the TextView widget for that just use the android attribute android:gravity
in your TextView xml declaration.
If you want Your text to get centered vertically and horizontally use:
android:gravity="center"
If you want Your text to get centered only horizontally use:
android:gravity="center_horizontal"