注册

进入聊天界面,消息不能滚动到最后那一条,而且弹出键盘时,界面也不跟着弹起

我直接集成环信UIdome进入聊天界面,消息不能滚动到最后那一条,而且弹出键盘时,界面也不跟着弹起
已邀请:

churk - 90hou

请问你的能实现群聊界面吗
这是一个键盘通知引起的,设置键盘frame发生变化时,整个界面上移即可。
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:hyphenate="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:animateLayoutChanges="true" android:background="#f2f0eb" > <com.hyphenate.easeui.widget.EaseTitleBar android:id="@+id/title_bar" android:layout_width="match_parent" android:layout_height="wrap_content" hyphenate:titleBarLeftImage="@drawable/ease_mm_title_back" /> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@id/title_bar" android:fillViewport="true" android:fitsSystemWindows="true"> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" > <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_above="@+id/input_menu" > <com.hyphenate.easeui.widget.EaseChatMessageList android:id="@+id/message_list" android:layout_width="match_parent" android:layout_height="match_parent" /> <com.hyphenate.easeui.widget.EaseVoiceRecorderView android:id="@+id/voice_recorder" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:visibility="invisible" /> </RelativeLayout> <com.hyphenate.easeui.widget.EaseChatInputMenu android:id="@+id/input_menu" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" /> </RelativeLayout> </ScrollView> </RelativeLayout>
 

要回复问题请先登录注册