27 lines
1.0 KiB
XML
27 lines
1.0 KiB
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">
|
|
<LinearLayout
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:id="@+id/parentLayout"
|
|
android:paddingLeft="1dp"
|
|
android:paddingRight="1dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.recyclelib.URecyclerView
|
|
android:gravity="center"
|
|
android:layout_gravity="center"
|
|
android:id="@+id/recyclerView"
|
|
android:paddingTop="@dimen/dp_20"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</LinearLayout>
|
|
<ViewStub
|
|
android:id="@+id/emptyView"
|
|
android:layout="@layout/comment_empty_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</FrameLayout>
|