I have an activity with this Layouts structure: LinearLayout -> ScrollView -> TableLayout
Below the TableLayout i have EditText, which I want to be scrolled up when the keyboard is active. So according to some reading I've made, i added:
android:windowSoftInputMode="adjustResize"
to AndroidManifest.xml, to the relevant activity, and added a ScrollView wrapper to the activity.xml file, so the Layouts structures of the activity is now as follows: ScrollView -> LinearLayout -> ScrollView -> TableLayout
The problem: The inner ScrollView is not working now... I guess the wrapping ScrollView is taking control when touched...
How can i solve this issue?
Any help will be appreciated. Thanks.