UPDATE:
I have solved disabling spell-check. In order to get rid of spell checking you must specify the EditText's InputType in the XML as the following:
android:inputType="textNoSuggestions"
However, my EditText needed also to be multiline, so I have added the following line to the EditText's XML:
android:inputType="textMultiLine|textNoSuggestions"
The sample of the XML I have provided below which shows the EditText's layout XML has been updated and thus includes the above line.
However, the problem of the word-wrapping is unresolved. Any help would be greatly appreciated.
Word Wrapping is sort of sorted but if anyone has a better solution please let me know!
Word wrapping is unfortunately still not solved. I have wrapped the EditText in a horizontal scroll view, as that is the only solution I can find for the time being. (Thanks to André Restivo for suggesting this) However, this is not an ideal solution as it slows down my app. If anyone knows of a better solution please let me know!
Whilst testing on the Android Emulator running Android 4.0 (Ice Cream Sandwich), I have noticed that the Edittext does some quite strange things.
Firstly, every word it identifies as "misspelt" is underlined in red. How do I disable this?
Secondly, although in the layout XML I have specified android:scrollHorizontally="true" word-wrap is enabled: how do I disable this as well? Here is the Layout XML code for the Edittext:
<EditText
android:id="@+id/editor"
android:layout_width="40dp"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_below="@+id/toolbar"
android:layout_toRightOf="@+id/toolbarleft"
android:paddingBottom="0dp"
android:paddingRight="0dp"
android:scrollHorizontally="true"
android:text=""
android:inputType="textMultiLine|textNoSuggestions" >
<requestFocus />
</Edittext>
Here is an example of the spell checker I need to disable:

Thanks very much!