When the android edittext input type is number, is it possible to make multilines? I have tried with the following in xml file.
android:inputType=\"number|textMultiL
Please do this:
android:inputType="textMultiLine|number" android:digits="0,1,2,3,4,5,6,7,8,9"
Taken from here: Answer