您知道当前选定项目的列表位置,在 ListView 之外有一个按钮应该触发对该项目的某些操作,并且您不只是使 ListView 行(或每行中的某些子视图)可点击。正确的?
您可以从列表的适配器获取信息。getItem(int position) 返回位置列表项表示的对象,因此如果它存储在对象中,您可以直接检索所需的信息。getView(int position) 返回该行的视图,允许您使用 findViewById(int id) 来检索您的 TextView。
如果您还没有适配器,您可以使用 getAdapter() 从 ListView 中获取它。
// ListView myListView = the ListView in question
// int selectedRow = the currently selected row in the ListView
// Each row in the ListView is backed by an object of type MyCustomDataClass
int dbRowId;
Adapter adapter = myListView.getAdapter();
MyCustomDataClass data = (MyCustomDataClass) adapter.getItem(selectedRow);
dbRowId = data.getDatabaseRowId();
// OR
dbRowId = data.rowId;
// OR whatever method the object has for getting the ID.
// OR
View listViewRow = adapter.getView(selectedRow);
TextView dbRowView = (TextView) listViewRow.findViewById(R.id.rowid);
String dbRowAsString = dbRowView.getText().toString();
dbRowId = Integer.parseInt(dbRowAsString);
您可能还会考虑用户是否更自然地点击 ListView 行,而不是选择该行然后按下另一个按钮。雷诺的答案可能会更好。