有以下xml标记。
此标记将显示在RecyclerView
中。如何执行以下操作:
RecyclerView
中显示此标记。什么适配器需要写?RecyclerView
中的“添加”按钮时,请使用此标记添加一个新项目。单击“删除”按钮时,请从RecyclerView
<android.support.design.widget.TextInputLayout
android:id="@+id/stepTextInputLayout"
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColorHint="@color/colorAccent">
<android.support.design.widget.TextInputEditText
android:id="@+id/stepTextInputEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Step" />
</android.support.design.widget.TextInputLayout>
<LinearLayout
android:id="@+id/stepImgsBlock"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:padding="5dp">
<ImageView
android:id="@+id/img1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@mipmap/ic_launcher" />
<ImageView
android:id="@+id/img2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@mipmap/ic_launcher" />
<ImageView
android:id="@+id/img3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@mipmap/ic_launcher" />
</LinearLayout>
<Button
android:id="@+id/btnDelete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Delete" />