我有以下问题:我有两个微调器,第一个带有 categorie1,第二个是 categorie2。
每个微调器都可以从表 cat1 和 cat2 的数据库中加载它的数据。但这并不是我想要的。我希望第二个微调器从当前选定的微调器 1 加载 cat1_id 等于 cat_id 的数据。
表格是这样的:
cat1:
| cat1_id | cat1_name |
=======================
| 1 | animal |
| 2 | plant |
| 3 | ... |
cat2:
| cat2_id | cat1_id | cat2_name |
=================================
| 1 | 1 | fish |
| 2 | 1 | mammal |
| 3 | 1 | bird |
| 4 | 2 | tree |
| 5 | ... | ... |
如何进行此比较或如何知道在 spinner1 中选择了哪个项目。
我的代码是这样的:
DatabaseHandler.class:
public List<String> getCat(){
labels = new ArrayList<String>();
db = this.getReadableDatabase();
cursor = db.rawQuery(SELECT_QUERY_CATEGORIE, null); // SELECT_QUERY_CATEGORIE = "SELECT * FROM cat1";
if (cursor.moveToFirst()) {
do {
labels.add(cursor.getString(1));
} while (cursor.moveToNext());
}
cursor.close();
db.close();
return labels;
}
public List<String> getSubcat(){
labels = new ArrayList<String>();
db = this.getReadableDatabase();
//cursor = db.rawQuery(SELECT_QUERY_SUBCATEGORIE, null); // SELECT_QUERY_SUBCATEGORIE = "SELECT * FROM cat2";
if (cursor.moveToFirst()) {
do {
labels.add(cursor.getString(2));
} while (cursor.moveToNext());
}
cursor.close();
db.close();
return labels;
}
MainActivity.class:
...
spCat.setOnItemSelectedListener(this);
spSubcat.setOnItemSelectedListener(this);
loadSpinnerData();
private void loadSpinnerData() {
List<String> lbCategorie = db.getCat();
ArrayAdapter<String> catAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, lbCategorie);
catAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spCat.setAdapter(catAdapter);
List<String> lbSubcategorie = db.getSubcat();
ArrayAdapter<String> subcatAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, lbSubcategorie);
subcatAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spSubcat.setAdapter(subcatAdapter);
}
public void onItemSelected(AdapterView<?> parent, View view, int position,
long id) {
}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
// Spinner2.Visibility should be = GONE;
}
提前致谢。
编辑:好的。我现在使用以下代码加载我的数据库:
int position = MainActivity.spCat.getSelectedItemPosition()+1;
cursor = db.rawQuery("SELECT * FROM cat2 WHERE cat_id = ?" + position, null);
但是我的第二个 Spinner 是空的,无论我从第一个 Spinner 中选择什么。在调试时我注意到,加载数据库在开始时只调用了一次。
编辑2:
删除“?”后现在可以使用 在我的 db.rawQuery 中。但是,在第一个微调器中更改项目后,第二个微调器不是它的内容。调用第一个微调器后如何刷新第二个微调器?
谢谢。