-5

私は 2 つの 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
    }
4

2 に答える 2

0

list view position の値を持つJavaファイル File1.java を考えてみましょう:

public class File1{

    public File1(){
    yourMethodWhereListViewPositionAvailable();
    }
     private Integer listViewPosition;
     public Integer getListViewPosition(){
        return this.listViewPosition;
     }
     public void setListViewPosition(Integer listViewPosition){
        this.listViewPosition=Integer listViewPosition;
     }

     private void yourMethodWhereListViewPositionAvailable(){
        ............
        this.setListViewPosition(listViewPosition);
        ...................
     }
    }

File2 で list view position の値が必要な場合は、次のようにします。

public class File2{
    .....................
    File1 file1 = new File1();
    file1.getListViewPosition();//You will get the value
   ..........................
}

ヘルプヘルプや懸念がある場合はお知らせください。

于 2013-04-05T09:05:55.337 に答える