home_fragment_chat.xml
1.0 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/ll_chat_fragment_parent"
android:background="@color/COLOR_EBEBEB"
android:orientation="vertical">
<ListView
android:id="@+id/chat_listview"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:cacheColorHint="#00000000"
android:divider="@null"
android:dividerHeight="@dimen/ui_DIMEN_24.0PX"
android:scrollbarStyle="outsideOverlay"
android:transcriptMode="normal"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#7fd8d8d8"/>
<com.xdy.home.widget.chat.KJChatKeyboard
android:id="@+id/chat_msg_input_box"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>