Have the following layout
<NestedScrollView>
<LinearLayout>
<TextView/>
<EditText/>
<LinearLayout/>
</NestedScrollView>
This layout is all contained in another ScrollView, which is why I'm using a NestedScrollView.
The EditText is multiline with a fixed minHeight. Currently, if you exceed the height limit, the EditText will grow and the NestedScrollView will adapt to the growth.
I'm looking to change this EditText to grow upwards instead of downwards. I've tried several things, but the NestedScrollView is not handling the upward growth as expected.
Any help would be much appreciated :)