17 lines
697 B
XML
17 lines
697 B
XML
<?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:orientation="vertical">
|
|
|
|
<com.scwang.smartrefresh.layout.SmartRefreshLayout
|
|
android:id="@+id/local_app_refresh_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/local_app_rv_app"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
|
</LinearLayout> |