我创建了三个包含表单的活动。一旦我们完成了第一个活动,它就会把我们带到第二个,然后是第三个。现在进行第三项活动I want to send whole data of first, second and third activity in one shot to the server
。
有没有办法实现这一目标。
我试过这个。
import android.app.Application;
public class Holder extends Application{
protected String getProductName;
protected String getRefCode ;
protected String getShortDes;
protected String getFullDes;
protected String getBarCode ;
protected String getwhereToDisplay;
protected String getCondition;
protected String getTechspec;
protected String getKeyfeature;
protected String getDisplayMode;
protected String getAddTags;
protected String getQauantity;
private String globalVariable="aa";
public String getGlobalVariable() {
return globalVariable;
}
public void setGlobalVariable(String getProductName) {
this.globalVariable = globalVariable;
}
@Override
public void onCreate() {
//reinitialize variable
}
}
以下文章我试过但没有工作。