Android Question Custom listview, edittext and soft keyboard

bluedude

Well-Known Member
Licensed User
Longtime User
Hi,

Because I wanted a flexible form I created a custom listview which loads form fields in a custom list. This works like a charm (multi resolution) but the keyboard is an issue.

When I edit the items down in the listview the keyboard is showing over the edit text that I edit. I tried to set a new height with the IME change event but no luck.

Any suggestions? Do I need to make the scroll list smaller or bigger?

Cheers.
 

sorex

Expert
Licensed User
Longtime User
I had this problem once, I could solve it by placing something in the manifest I believe so that the text moves up above the keyboard so that you see what you enter.

I'll dig into my stuff to find it.
 
Upvote 0

sorex

Expert
Licensed User
Longtime User
maybe this one?

B4X:
        <activity
            android:windowSoftInputMode="adjustPan"
 
Upvote 0
Top