Two questions in this regard:
1) how can I disable the automatic spellchecking (and the underlining of wrongly spellt words) in editTexts. I found this but I don't know where to put it in the manifest.xml:
android:inputType="textNoSuggestions"
Is it possible to disable spellchecking for some editTexts and leave others with spellchecking enabled?
2) Is it possible to get rid of the application-icon which ICS put at the top of each screen? It consumes a lot of vertical space
Sub Activity_Create(FirstTime As Boolean)
RemoveHomeIcon
End Sub
Sub RemoveHomeIcon
Dim r As Reflector
r.Target = r.GetActivity
r.Target = r.RunMethod("getActionBar")
r.RunMethod2("setDisplayShowHomeEnabled", False, "java.lang.boolean")
End Sub
I have bluetooth keyboard with a 10" tablet and unfortunately I don't get any suggestions when using it. I was looking for another way of spell checking can you think of any thing that i could utilise.
An alternate way to disable suggestions on a per-EditText field is to set the Input_Type to 129 (TYPE_TEXT_VARIATION_VISIBLE_PASSWORD OR TYPE_CLASS_TEXT)