Edittext is hidden on keyboard focus. Once the i click the edittext, keyboard hides it!! Have added "adjustResize" in my manifest, still no success.
This is my XML file
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="dev.sixhops.app.activities.ChatActivity"
android:background="#FFF3E0"
>
<include
android:id="@+id/app_bar"
layout="@layout/app_bar"></include>
<android.support.v7.widget.RecyclerView
android:id="@+id/chatList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/app_bar"
android:layout_marginBottom="60dp"
android:background="#FFF3E0"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginRight="16dp"
android:layout_marginLeft="16dp"
android:layout_marginBottom="8dp"
android:gravity="bottom"
android:background="#FFF3E0">
<ImageView
android:id="@+id/message_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@drawable/ic_action_send_now"
android:background="@drawable/circle_orange"
android:layout_marginTop="4dp"
android:layout_marginLeft="4dp"/>
<EditText
android:id="@+id/message_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_toLeftOf="@id/message_send"
android:minEms="15"
android:hint="message here!!"
android:textSize="@dimen/font_size3"
android:background="@drawable/chat_bg_white"
android:textColor="@color/black"
android:maxLines="2"
android:padding="10dp"
android:cursorVisible="true"
android:textCursorDrawable="@null"
android:singleLine="true"/>
</RelativeLayout>
Is there anything that i am missing?