22 lines
847 B
XML
22 lines
847 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.recyclelib.URecyclerView
|
|
android:gravity="center"
|
|
android:id="@+id/recyclerView"
|
|
android:background="#f7f8f8"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<ViewStub
|
|
android:id="@+id/emptyView"
|
|
android:layout="@layout/comment_empty_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<com.ubt.jimu.widgets.CommentKeyBoard
|
|
android:id="@+id/comment_keyboard"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</FrameLayout>
|