I have an edittext which is of inputType textMultiLine inside RecyclerView which again is in NestedScrollView. I have a functionality in which I have to take Recyclerview inside the NestedScrollview. RecyclerView scrolling has been disabled by NestedScrollingEnabled as false. Inside this Recyclerview, there is an itemtype which has edittext in it. This edittext is Multiline and of 100 dp, If vertically, the content won't fit, the content will get cut, cause of max height. So How can I make my edittext scrollable inside Nested Scroll View
I have enabled Edittext scrolling with the following code:
<EditText
android:id="@+id/etYesDescription"
style="@style/EditTextStyle"
android:layout_width="match_parent"
android:layout_height="100dp"
android:inputType="textMultiLine"
android:imeOptions="actionDone"
android:overScrollMode="always"
android:scrollbarStyle="insideInset"
android:scrollbars="vertical" />
But it is still not scrollable, How can I make my Edittext scroll work?