我有一个显示存储在文件中的数据的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
感谢您的帮助。