I'm fairly new into Xamarin/Android development and currently facing the following problem:
I have an Activity with a dozen input controls formatted with a TableLayout inside a ScrollView. Also there's a ListView which gets filled with data from an SQLite table onCreate() and rendered as CheckBox-List. I can see all elements (currently four) if the keyboard is not visible. As soon as the keyboard is visible and I scroll down to the ListView only one element is left clickable. I tried some proposed solutions from other threads (like this) but it still does not work.
Here's the essential layout:
<ScrollView>
...
<ListView />
...
</ScrollView>
The activity is set to android:windowSoftInputMode="stateVisible|adjustResize"
I'm not sure if I'm even using the right layout element or if I should use some other way to programmatically generate checkboxes from my SQLite table?