In my code,am having EdiText and its code is:
<EditText
android:layout_height="150dp"
android:id="@+id/profiledescription"
android:imeOptions="actionDone|flagNoExtractUi"
android:textSize="16sp"
android:paddingLeft="20dp"
android:layout_width="fill_parent"
android:enabled="false"
android:layout_marginRight="20dp"></EditText>
But the problem is cursor is starting from middle rather than usual first position:

You’ll probably need to set
android:gravity="top"for the corresponding XML-element in the layout.