我开始使用android开发,我正在尝试基于协调器布局在我的应用程序中实现滚动。
<RelativeLayout 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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/one"
android:textSize="40dp"
android:textStyle="bold"
android:layout_centerInParent="true"/>
</RelativeLayout>
这是我的标签内容之一
{{1}}
当回收者视图填充了一些数据时,我能够滚动和折叠。但是当我删除回收器视图时,我无法根据我的选项卡内容折叠工具栏。如何根据我的选项卡内容折叠工具栏?