带标记的RecyclerView适配器

时间:2019-03-21 12:42:39

标签: android android-layout

有以下xml标记。

此标记将显示在RecyclerView中。如何执行以下操作:

  1. RecyclerView中显示此标记。什么适配器需要写?
  2. 单击RecyclerView中的“添加”按钮时,请使用此标记添加一个新项目。
  3. 单击“删除”按钮时,请从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" />
    

0 个答案:

没有答案