gpt4 book ai didi

java - ListView 中的 OnClickListener _id 与 SQLite 中的正确行 _id 不匹配

转载 作者:行者123 更新时间:2023-12-01 09:26:06 26 4
gpt4 key购买 nike

我是 Android 新手。我有一个 SQLite 后端,其中每一行都是唯一的(想想一个人)。然后,我在每个人的 ListView 中显示这些数据。单击 ListView 项时,它将转到 subview ,其中包含特定父 ListView 项的所有信息。我遇到的问题是,当我为 ListView 设置 OnItemClickListener 时,int 位置和长 id 从 0 开始。当我通过 ListView 中第一个项目的 Intent 传递其中任何一个时,我得到一个“android.id”。 database.CursorIndexOutOfBoundsException:请求索引 0,大小为 0"。这是因为我在 SQlite 中的行 id 从 1 开始,而 int 位置或长 id 从 0 开始。解决这个问题的最佳方法是什么?我读过您可以将 1 添加到位置或 id,但是如果用户以不同的方式对 ListView 进行排序,是否会将错误的 ID 传递到数据库?谢谢

主要 Activity

   final ArrayList<Person> objects = db.getAllPersons();
final CustomAdapter customAdapter = new CustomAdapter(this, objects);
customAdapter.notifyDataSetChanged();
final ListView listView = (ListView) findViewById(R.id.content_list);
listView.setAdapter(customAdapter);

//Listen for ListView item click

listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {


Intent intent = new Intent(MainActivity.this, PersonProfile.class);
intent.putExtra("id", id;
startActivity(intent);

}
});

人员 Activity

    public class PersonProfile extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.person_profile);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

//Get unique ID from MainActivity
int personID = getIntent().getExtras().getInt("id");

//Fetch individual from the database based on unique ID
DatabaseHandler db = new DatabaseHandler(this);
db.getReadableDatabase();
Person person = db.getPerson(personID);
db.close();

//Set TextView budget using unique ID
String budget = String.valueOf(person.getBudget());
TextView textViewBudget = (TextView) findViewById(R.id.person_budget);
textViewBudget.setText(budget);

}

最佳答案

我按照 pskink 的建议实现了 SimpleCursorAdapter。它需要一些其他代码更改,但我同意这是最简单的方法。

这是我的类(class)之后的样子

主要 Activity

DatabaseHandler db = new DatabaseHandler(this);
db.getWritableDatabase();
Cursor cur = db.getAllPersons();
String[] columns = new String[]{"name", "budget"};
int[] to = new int[]{R.id.name, R.id.budget};

SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.row_layout, cur, columns, to);
final ListView listView = (ListView) findViewById(R.id.content_list);
listView.setAdapter(adapter);

listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {

Intent intent = new Intent(MainActivity.this, PersonProfile.class);
intent.putExtra("id", id);
startActivity(intent);

}
});

人员 Activity

public class PersonProfile extends AppCompatActivity {
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.person_profile);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

Long intent = getIntent().getExtras().getLong("id");
DatabaseHandler db = new DatabaseHandler(this);
db.getReadableDatabase();

String budgetSet = db.getPerson(intent);


TextView textViewBudget = (TextView) findViewById(R.id.person_budget);

textViewBudget.setText(budgetSet);

db.close();

}

数据库处理程序

Cursor getAllPersons() {
SQLiteDatabase db = this.getWritableDatabase();
Cursor cursor = db.query(TABLE_PERSON, new String[]{KEY_ID,
KEY_NAME, KEY_BUDGET}, null, null, null, null, null);

return cursor;
}

关于java - ListView 中的 OnClickListener _id 与 SQLite 中的正确行 _id 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39818795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com