检索ListView中指定行的值

时间:2011-08-18 15:27:39

标签: android listview

我有一个显示存储在文件中的数据的ListView,通常我们也可以从这个ListView中删除一行(数据)。文件的数据存储在另一个类中。我想在删除之前检索ListView中指定行的value1(公共)变量(请参阅代码)。我可以指定ListView的value1行的arg2吗?

new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog,
int id) {
Carburant m= new Carburant(); //instanciate the class that contains the value1 variable
String value1= m.value1; //here i want to store value1 variable of arg2 line in the ListView
list.remove(arg2); //here all the line (data) will be deleted

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

listeView.getItem(index);

您可以从onClick获取索引。