我创建了两个java文件,在一个java文件中我得到了整数类型位置变量中的android列表视图位置,如何将该位置值调用到另一个java文件中
public void onItemClick(AdapterView<?> parent, View view, int position,long id) {
Intent intent = new Intent(this, Play.class);
startActivity(intent);
int pos = position; //<------------ I assigned pos for position i need to call pos to another Play.class file
}