I try set multi line for edittext if imputtype="number"
as:
<EditText
android:id="@+id/txtJianNo"
android:layout_width="480px"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:background="@drawable/txtjianno"
android:ems="10"
android:gravity="top"
android:inputType="number|textMultiLine"
android:lines="2"
android:singleLine="false"
android:textColor="#5FB234"
android:textSize="18dp" />
But value of edittext doesn't new line if length of value > length of edittext. How set multi-line EditText with inputtype="number"?