Hi i need to restrict the EditText to two lines and i am using the following code
<EditText
android:layout_toRightOf="@+id/valettext"
android:layout_centerVertical="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="70dp"
android:maxLines="2"
android:ellipsize="end"
android:id="@+id/note"/>
but its not working ,its going to the next line on pressing the Next button.
How to do this.
Thanks in advance.