I want to have 5 lines for the height of the text area. I am using the following code.
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:singleLine="false"
android:lines="5"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip" />
The text area looks fine, but the problem is that the cursor is blinking in the middle of the text field. I want it to blink at first line, at the first character of the text field.
it will work
This is similar to CommonsWare answer but with a minor tweak:
android:gravity="top|left"
. Complete code example:Use this:
or
I think you can use
layout:weight = 5
insteadandroid:lines = 5
because when you port your app to smaller device - it does it nicely.. well, both attributes will accomplish your job..U can use this Edittext....This will help you.
Now a day use of gravity
start
is best choise:For EditText (textarea):