我应该为我的适配器类选择什么超类?



我正在制作一个时间表应用程序。在该应用程序中,每一行都是一个CardView,有三列-索引,任务名称,在该任务上花费的总时间。索引为TextView,任务名称和总花费时间为EditView。我想通过适配器传输每一行的数据。基于我所选择的小部件,我不确定为Adapter类选择哪个超类。

这是显示时间表所有行的主屏幕-

package com.example.timetable;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.RecyclerView;
import java.util.ArrayList;
import java.util.List;
public class TimeTable extends AppCompatActivity {
private RecyclerView recyclerView;
private RecyclerView.Adapter adapter;
private RecyclerView.LayoutManager layoutManager;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.time_table);
List<cellProperties> cells = new ArrayList<>();

//adapter should come here
findViewById(R.id.add).setOnClickListener(view -> {
});

}
}

这是主屏幕布局的xml文件-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TimeTable"
android:orientation="vertical"
android:padding="10dp"
android:layout_margin="10dp">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<Button
android:id="@+id/add"
android:layout_width="38dp"
android:layout_height="wrap_content"
android:text="+"
android:layout_gravity="center_horizontal"
>
</Button>
</LinearLayout>

下面是每一行的示例(我将把这一行添加到我的主屏幕中)-

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_margin="10dp"
app:cardCornerRadius="10dp"
app:cardElevation="5dp"
app:contentPadding="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:id="@+id/index"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_weight="0.125"
android:text="1."
android:textAlignment="center">
</TextView>
<EditText
android:id="@+id/taskName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_weight="0.625"
android:hint="Enter Task's name"
android:inputType="text">
</EditText>
<EditText
android:id="@+id/totalHours"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textSize="18sp"
android:layout_weight="0.25"
android:hint="Total Time"
android:inputType="time">
</EditText>
</LinearLayout>
</androidx.cardview.widget.CardView>

适配器类应该几乎总是扩展ListAdapter。下面是一个非常基本的例子:

相关内容

  • 没有找到相关文章

最新更新