android - Text Editor keyboard overlaps with the recyclerview list -
the layout has recyclerview , text editor @ bottom of view. when click editor, keyboard popup , overlaps recycerview. want recyclerview resized when keyboard brought up. in manifest file have : <activity android:name=".commentactivity" android:label="yourtime" android:windowsoftinputmode="adjustresize"> </activity> my layout looks : <relativelayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v7.widget.recyclerview android:id="@+id/rv" android:layout_width="match_parent" android:layout_height="wrap_content" /> <linearlayout android:orientation="horizonta...