我想在RecyclerView中显示一个片段作为第一项,我可以这样做吗?
答案 0 :(得分:1)
我不确定,但我认为这是可能的。
为row_layout.xml
或RecyclerView
创建ListView
时,而不是在其中添加任何其他布局;你应该在那里保留一个片段,然后该片段将包含你的row_layout.xml
示例:
您的row_layout.xml
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout="@layout/your_layout"
android:name="packageName.className"
tools:layout="@layout/your_layout"
android:id="@+id/navigation_fragment" />
片段布局
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/your_id"
tools:context="packageName.className">
<!--Any view inside-->
</LinearLayout>