Android Fragment如何从数据库读取数据并在列表中显示 (fragment列表显示数据库)
Fragment是Android开发中常用的组件之一,它可以将用户界面的不同部分分开,使得应用程序的代码更加模块化和易于维护。同时,Android开发者也经常需要从数据库中读取数据,然后在用户界面中显示。因此,本文将介绍如何在Fragment中从数据库读取数据,并将数据显示在列表中。
1. 创建数据库
在Android应用程序中使用SQLite数据库来存储数据是非常常见的做法。因此,为了演示如何从数据库中读取数据,我们首先需要创建一个SQLite数据库。具体步骤如下:
1. 创建一个新的Android项目。
2. 在项目中创建一个名为DatabaseHelper的Java类,继承自SQLiteOpenHelper。在DatabaseHelper类中,我们可以定义数据库名称、版本号及创建表的SQL语句。
“`
public class DatabaseHelper extends SQLiteOpenHelper {
private static final String DATABASE_NAME = “mydatabase.db”;
private static final int DATABASE_VERSION = 1;
private static final String TABLE_NAME = “students”;
private static final String COLUMN_ID = “_id”;
private static final String COLUMN_NAME = “name”;
private static final String COLUMN_AGE = “age”;
private static final String CREATE_TABLE_SQL =
“CREATE TABLE IF NOT EXISTS ” + TABLE_NAME + ” (” +
COLUMN_ID + ” INTEGER PRIMARY KEY AUTOINCREMENT, ” +
COLUMN_NAME + ” TEXT NOT NULL, ” +
COLUMN_AGE + ” INTEGER” +
“);”;
public DatabaseHelper(Context context) {
super(context, DATABASE_NAME, null, DATABASE_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL(CREATE_TABLE_SQL);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL(“DROP TABLE IF EXISTS ” + TABLE_NAME);
onCreate(db);
}
}
“`
在上述代码中,我们定义了一个名为students的表,其中包含id、name和age三个字段。CREATE_TABLE_SQL是创建表的SQL语句,onCreate方法在数据库之一次创建时执行该语句,onUpgrade方法在更新数据库版本时删除原有表,重新创建新表。
2. 添加数据到数据库
我们已经创建了一个数据库,现在需要向数据库中添加数据。常见的添加数据方法是在应用程序中的一个Activity中添加数据。在本文中,我们将在Fragment中实现添加数据。我们需要在Fragment的布局文件中添加一个按钮和三个文本框,以便用户输入新数据。接下来,我们将在Fragment类中重写onCreateView方法,并在其中初始化上述三个文本框。
“`
public class AddFragment extends Fragment {
private EditText editTextName;
private EditText editTextAge;
public AddFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup contner,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View rootView = inflater.inflate(R.layout.fragment_add, contner, false);
editTextName = rootView.findViewById(R.id.editTextName);
editTextAge = rootView.findViewById(R.id.editTextAge);
Button buttonAdd = rootView.findViewById(R.id.buttonAdd);
buttonAdd.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String name = editTextName.getText().toString();
int age = Integer.parseInt(editTextAge.getText().toString());
DatabaseHelper databaseHelper = new DatabaseHelper(getContext());
SQLiteDatabase db = databaseHelper.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(DatabaseHelper.COLUMN_NAME, name);
values.put(DatabaseHelper.COLUMN_AGE, age);
db.insert(DatabaseHelper.TABLE_NAME, null, values);
Toast.makeText(getContext(), “Data added successfully!”, Toast.LENGTH_SHORT).show();
editTextName.setText(“”);
editTextAge.setText(“”);
}
});
return rootView;
}
}
“`
在上述代码中,我们首先获取了Fragment的布局文件,并初始化了editTextName和editTextAge两个文本框以及buttonAdd按钮。然后,我们在buttonAdd的ClickListener中读取文本框中的数据,并将其插入到数据库中。我们将文本框中的内容清空,并显示一个Toast消息表示数据已经成功添加。
3. 从数据库中读取数据并在列表中显示
我们已经创建了一个数据库,并向其中添加了数据。现在,我们需要在Fragment中从数据库中读取数据,并将其显示在一个列表中。我们需要在Fragment中的布局文件中添加一个ListView组件,用于显示数据。接下来,我们创建一个名为DisplayFragment的Fragment类,用于显示数据库中的数据。在该类中,我们首先需要从数据库中获取数据,然后使用ListView组件将其显示在屏幕上。具体实现如下:
“`
public class DisplayFragment extends Fragment {
private ListView listView;
private List studentList = new ArrayList();
private StudentAdapter adapter;
public DisplayFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup contner,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View rootView = inflater.inflate(R.layout.fragment_display, contner, false);
listView = rootView.findViewById(R.id.listView);
DatabaseHelper databaseHelper = new DatabaseHelper(getContext());
SQLiteDatabase db = databaseHelper.getReadableDatabase();
Cursor cursor = db.rawQuery(“SELECT * FROM ” + DatabaseHelper.TABLE_NAME, null);
if (cursor.moveToFirst()) {
do {
int id = cursor.getInt(cursor.getColumnIndex(DatabaseHelper.COLUMN_ID));
String name = cursor.getString(cursor.getColumnIndex(DatabaseHelper.COLUMN_NAME));
int age = cursor.getInt(cursor.getColumnIndex(DatabaseHelper.COLUMN_AGE));
studentList.add(new Student(id, name, age));
} while (cursor.moveToNext());
}
adapter = new StudentAdapter(getContext(), studentList);
listView.setAdapter(adapter);
return rootView;
}
}
“`
在上述代码中,我们首先获取了ListView组件,并创建了一个空白的studentList列表,用于存储从数据库中读取到的数据。然后,我们创建了一个DatabaseHelper对象,并使用getReadableDatabase方法打开一个可读的数据库连接。通过执行SELECT语句,我们获取了所有学生的数据,并将其添加到studentList列表中。我们创建了一个StudentAdapter对象,并使用setAdapter方法将数据显示在ListView组件上。
学生类
在上述代码中,我们使用了一个Student类来存储读取到的学生数据。因此,我们需要定义一个Student类,如下所示:
“`
public class Student {
private int id;
private String name;
private int age;
public Student(int id, String name, int age) {
this.id = id;
this.name = name;
this.age = age;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
“`
在上述代码中,我们定义了一个名为Student的类,包含id、name和age三个成员变量。然后,我们实现了三个getter、setter方法,用于读取和设置学生对象的属性。
学生适配器
我们需要定义一个名为StudentAdapter的适配器类,用于将从数据库中读取到的学生数据显示在ListView组件上。具体实现如下:
“`
public class StudentAdapter extends ArrayAdapter {
private Context context;
private List studentList;
public StudentAdapter(Context context, List studentList) {
super(context, 0, studentList);
this.context = context;
this.studentList = studentList;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = LayoutInflater.from(context).inflate(R.layout.list_item_student, parent, false);
}
Student student = studentList.get(position);
TextView textViewId = convertView.findViewById(R.id.textViewId);
textViewId.setText(String.valueOf(student.getId()));
TextView textViewName = convertView.findViewById(R.id.textViewName);
textViewName.setText(student.getName());
TextView textViewAge = convertView.findViewById(R.id.textViewAge);
textViewAge.setText(String.valueOf(student.getAge()));
return convertView;
}
}
“`
在上述代码中,我们首先定义了一个StudentAdapter类,继承自ArrayAdapter,用于指定使用Student类作为列表的数据类型。然后,我们创建了一个构造函数,用于获取上下文对象和学生列表。在getView方法中,我们首先检查convertView是否为空,并使用LayoutInflater.from(context).inflate方法获取一个列表项视图。然后,我们使用position参数获取与当前位置对应的学生对象。我们使用findViewById方法获取TextView组件,并将收到的学生数据设置为其文本值。