Попробуйте это: android:gravity="top"
<EditText
android:layout_gravity="center"
android:id="@+id/txtMessage"
android:layout_height="wrap_content"
android:layout_below="@+id/lblMessage"
android:layout_width="wrap_content"
android:width="250dip"
android:text="hello"
android:maxLength="760"
android:gravity="top"
android:lines="4"/>
поэтому android:gravity="top"
устанавливает текст в верхнюю позицию.
Вы также можете установить другое значение атрибута android:gravity
, например center
, bottom
, center_vertical
, left
right
, center_horizontal
и т. Д.
Наслаждайтесь !!