1
public void firstMethod(){
//has code intiates another activity and method (thirdMethod) where an id is retrieved
}
acitivity2:
public void thirdMethod(){
//has code that does query for an id and stores it as a variable
}
活動1:
public void secondMethod(){
//has code that displays the variable from thirdMethod
}
我試圖做的是設置數據庫調用(活性1)變量,檢索一個id /執行數據庫調用(activity2),將結果存儲爲變量(activity2),然後顯示在原始活動(活動1)中
問題是:它先採用方法,第二種方法,第三種方法而不是第一種方法,第三種方法,第二種方法使變量爲空。
似乎在活動中實際的數據庫調用之前1層的方法來完成所有活動2.
什麼我需要做的,以確保第一和第三方法顯示變量之前做了什麼?