mirror of
https://github.com/pppscn/SmsForwarder
synced 2025-08-21 18:27:40 +08:00
37 lines
1.5 KiB
XML
37 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/xui_config_color_background"
|
|
android:orientation="vertical"
|
|
tools:ignore="Overdraw">
|
|
|
|
<com.scwang.smartrefresh.layout.SmartRefreshLayout
|
|
android:id="@+id/refreshLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:srlEnableAutoLoadMore="true"
|
|
app:srlEnableLoadMore="false">
|
|
|
|
<com.scwang.smartrefresh.header.MaterialHeader
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:overScrollMode="never"
|
|
android:paddingBottom="@dimen/config_padding_5dp"
|
|
tools:listitem="@layout/adapter_senders_card_view_list_item" />
|
|
|
|
<!-- TODO:注意修改包名时,这里也需要修改 -->
|
|
<com.idormy.sms.forwarder.widget.MaterialFooter
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
|
|
|
|
</LinearLayout> |