I have activity with this Layouts structure: LinearLayout -> ScrollView -> TableLayout
Below TableLayout, I have an EditText that I want to scroll when the keyboard is active. Therefore, according to some data that I made, I added:
android:windowSoftInputMode="adjustResize"
in AndroidManifest.xml, I added the ScrollView wrapper to the activity.xml file to the corresponding action, so the Layouts structures of this kind now look like this: ScrollView → LinearLayout → ScrollView → TableLayout
Problem: The internal ScrollView is no longer working ... I believe that the wrapping ScrollView takes control when touched ...
How can I solve this problem?
Any help would be appreciated. Thanks.
android layout
ofirbt
source share