Я хочу отобразить данные из моей базы данных SQLite в мой RecyclerView (с LinearLayoutManager).Я создал макет RecyclerView для списка и макет CardView для отдельного элемента.Я создал базу данных с таблицей рецептов, и я могу сохранить новый рецепт.Моя цель - показать название рецепта внутри CardView.
Класс рецепта
public class Recipe {
private int id;
private String title;
private String photo;
private String instructions;
private int targetPeople;
private int time;
public Recipe() {
this.id = id;
this.title = title;
this.photo = photo;
this.instructions = instructions;
this.targetPeople = targetPeople;
this.time = time;
}
(плюс метод установки / получения)
ВнутриDatabaseHelper, я создал метод для получения всех рецептов, добавляемых в список:
public List<Recipe> getAllRecipes() {
// sorting orders
String sortOrder =
RECIPE_TITLE + " ASC";
List<Recipe> recipeList = new ArrayList<Recipe>();
SQLiteDatabase db = this.getReadableDatabase();
Cursor cursor = db.rawQuery("SELECT * FROM " + TBL_RECIPE, null);
// Traversing through all rows and adding to list
if (cursor.moveToFirst()) {
do {
Recipe recipe = new Recipe();
recipe.setTitle(cursor.getString(cursor.getColumnIndex("TITLE")));
// Adding user record to list
recipeList.add(recipe);
} while (cursor.moveToNext());
}
cursor.close();
db.close();
// return user list
return recipeList;
}
Это мой класс Adapter с классом ViewHolder для RecyclerView:
public class MyAdapter extends RecyclerView.Adapter<MyAdapter.ViewHolder> {
private Context mContext;
private List<Recipe> recipeList;
//constructor of adapter
public MyAdapter(Context mContext, List<Recipe> recipeList) {
this.mContext = mContext;
this.recipeList = recipeList;
}
//ViewHolder Class
public class ViewHolder extends RecyclerView.ViewHolder {
public final TextView textViewTitle;
//constructor for ViewHolder
public ViewHolder(View itemView) {
super(itemView);
textViewTitle = itemView.findViewById(R.id.descriptionView);
}
}
//return an instance of ViewHolder Class
@NonNull
@Override
public ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int position) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.list_item_card, parent, false);
return new ViewHolder(itemView);
}
//binding data to our ViewHolder
@Override
public void onBindViewHolder(@NonNull ViewHolder viewHolder, int position) {
// retrieve UI elements inside viewHolder object
viewHolder.textViewTitle.setText(recipeList.get(position).getTitle());
}
//return the size of the list
@Override
public int getItemCount() {
return recipeList.size();
}
}
Наконец, яобъявил RecyclerView, List, Adapter и т. д. в MainActivity, где я создал метод для отображения всех рецептов:
@SuppressLint("StaticFieldLeak")
private void displayAllRecipes() {
// AsyncTask is used that SQLite operation does not block the UI Thread.
new AsyncTask<Void, Void, ArrayList<Recipe>>() {
@Override
protected ArrayList<Recipe> doInBackground(Void... params) {
recipeList.clear();
recipeList.addAll(dbHelper. getAllRecipes());
return recipeList;
}
@Override
protected void onPostExecute(ArrayList<Recipe> aVoid) {
super.onPostExecute(aVoid);
resultAdapter.notifyDataSetChanged();
}
}.execute();
}
Там нет ошибок, но он не работает.