thank you Erel.
In the meanwhile, I'm trying to set this value to every EditText view in my 'testapp', but I'm doing something wrong, it doesn't change with this code:
For i = 0 To Activity.NumberOfViews - 1
If activity.GetView(i) Is EditText Then
Dim myfield As EditText
myfield=activity.GetView(i)
myfield.InputType = 3
End If
Next
ToastMessageShow(i, False)
all views are in a layout loaded to a tabHost, could it be the problem?
ToastMessageShow line returns '1' when there are about 20 edittexts...