台达PLC解密次数限制【专业】【信誉】【18230062509】这一块本来想写下首页来着,但是想了想东西太多了,所以挑选了一个不需要联网的一个页面——浏览历史,这一个页面既继承了 BaseActivity,又有无内容、加载中、有内容等状态的切换,所以比较合适。
先来看一下页面的布局吧:
<com.zj.core.util.TitleBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:backImageVisiable="true"
app:titleName="浏览历史" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.scwang.smartrefresh.layout.SmartRefreshLayout
android:id="@+id/historySmartRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/historyRecycleView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.scwang.smartrefresh.layout.SmartRefreshLayout>
<include layout="@layout/layout_lce" />
</FrameLayout>
复制代码 布局需要注意的是要把 layout_lce 写进去ÿ