40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/gray_f0"
|
|
android:orientation="vertical"
|
|
android:paddingTop="5dp"
|
|
tools:context=".activity.meeting.MineMeetingListActivity">
|
|
|
|
<include layout="@layout/layout_base_search_cancel" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.scwang.smart.refresh.layout.SmartRefreshLayout
|
|
android:id="@+id/srl_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="10dp"
|
|
android:background="@color/white">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rlv_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/white"
|
|
tools:itemCount="5"
|
|
tools:listitem="@layout/item_email" />
|
|
</com.scwang.smart.refresh.layout.SmartRefreshLayout>
|
|
|
|
<com.tenlionsoft.baselib.core.widget.views.CustomStateView
|
|
android:id="@+id/csv_state"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true" />
|
|
|
|
</RelativeLayout>
|
|
</LinearLayout> |