我的数据库中有一个食谱列表。每个食谱都包含一个标题和类似这样的成分列表:
然后需要在recyclerview的android设备中正确显示此内容。到目前为止,在我的 activity_main.xml 中,我已经创建了一个recyclerview:
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context=".MainActivity"
android:padding="20dp"
android:background="#f1f1f1"
android:gravity="center">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerViewRecipes"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
定制的recyclerview列表项如下所示:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="400dp"
android:layout_margin="20dp"
android:background="@drawable/cornered_background"
android:padding="20dp">
<TextView
android:id="@+id/tvRecipeTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:layout_centerHorizontal="true"
android:textStyle="bold"
android:textColor="@android:color/black">
<ImageView
android:id="@+id/imgDelete"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/delete"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerViewIngredients"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:minHeight="100dp"
android:layout_below="@id/tvRecipeTitle">
</android.support.v7.widget.RecyclerView>
<ImageView
android:id="@+id/imgEdit"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/edit"
android:layout_marginTop="20dp"
android:layout_alignParentBottom="true"
android:layout_alignParentStart="true"/>
</RelativeLayout>
从上面的代码中可以看到,然后我对每个配方项中的各种成分有了另一个recyclerview。我坚信这不是解决此问题的正确方法。我如何有效地显示每个recyclerview项目内的成分列表?