TiebaLite/app/src/main/res/layout/fragment_forum.xml

35 lines
1.5 KiB
XML
Raw Normal View History

2020-04-05 13:15:03 +08:00
<?xml version="1.0" encoding="utf-8"?>
2020-10-05 20:12:28 +08:00
<com.scwang.smart.refresh.layout.SmartRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-04-05 13:15:03 +08:00
xmlns:tools="http://schemas.android.com/tools"
2020-10-05 20:12:28 +08:00
xmlns:app="http://schemas.android.com/apk/res-auto"
app:srlDragRate="0.8"
app:srlEnableNestedScrolling="true"
app:srlEnableOverScrollBounce="true"
app:srlEnableOverScrollDrag="true"
2020-04-05 13:15:03 +08:00
android:id="@+id/refresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragments.ForumFragment">
2020-10-05 20:12:28 +08:00
<com.huanchengfly.tieba.post.widgets.theme.TintMaterialHeader
android:id="@+id/refresh_header"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2020-04-05 13:15:03 +08:00
<androidx.recyclerview.widget.RecyclerView
2020-10-05 20:12:28 +08:00
android:paddingTop="@dimen/card_margin"
android:paddingStart="@dimen/card_margin"
android:paddingEnd="@dimen/card_margin"
2020-08-28 18:33:09 +08:00
android:clipToPadding="false"
2020-04-05 13:15:03 +08:00
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2020-10-05 20:12:28 +08:00
<com.huanchengfly.tieba.post.components.LoadMoreFooter
2021-02-01 18:36:34 +08:00
android:layout_marginStart="@dimen/card_margin"
android:layout_marginEnd="@dimen/card_margin"
android:layout_marginBottom="@dimen/card_margin"
2020-10-05 20:12:28 +08:00
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</com.scwang.smart.refresh.layout.SmartRefreshLayout>