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:

Demonstration of Spell-Checker

Thanks very much!

link|improve this question

80% accept rate
feedback

5 Answers

up vote 0 down vote accepted

To disable line wrapping you have to wrap (pun not intended) your EditText with an HorizontalScrollView and set your layout_width to match_parent.

link|improve this answer
I see what you are saying. When I initially started writing this app I used a Scrollview but it made my app ridiculously slow so I would like to avoid using it if at all possible. There must be a way to disable line wrapping on Android 4.0- all other versions of Android have supported it using android:scrollHorizontally="true". If Google have got rid of the ability to turn word wrapping off I find that very strange, and yes, I will have to use ScrollView. Thanks very much for your help anyway! – RandomGuy Feb 14 at 13:03
I have used this answer as, looking around, it seems like the only solution there is. Therefore I will award this the answer. However, if anybody does know any better ways of doing this, I would really appreciate it if they could let me know how to do it! – RandomGuy Feb 18 at 15:18
About ScrollView being slow in ICS: Try disabling hardware acceleration in manifest. Worked for me. – André Restivo Feb 18 at 19:03
feedback

In Android 4.0 sometimes I get a red underline in my Textview so i add the property ...

android:inputType="textNoSuggestions" 
link|improve this answer
1  
Thanks for that. Unfortunately I have already worked that out (if you see the question I've asked, I updated it so it says so). Thanks anyway! – RandomGuy Feb 22 at 19:32
feedback

remove android:inputType="" and all should be well.

link|improve this answer
1  
Sorry that's my mistake- in the actual code I had already got rid of inputType="" and it made no difference. – RandomGuy Jan 26 at 17:33
feedback

In your Java class you can add to the Edittext object...

  wire1type = (EditText)findViewById(R.id.wire1type);
  wire1type.setInputType( ~(InputType.TYPE_TEXT_FLAG_AUTO_CORRECT) );

This clears out the autocorrect flag and will work in API 4.

link|improve this answer
feedback
android:inputType="textMultiLine|textPhonetic"

removed all red underlines for me.

android:inputType="textMultiLine|textNoSuggestions"

produces compilation error.

I use Android API 1.6.

link|improve this answer
Yes it appears textNoSuggestions is not supported until later on. My app supports Android 2.1 upwards so it is not a problem. – RandomGuy Apr 27 at 21:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.