要求:頁面1跳轉到頁面2,頁面2再返回頁面1同時返回資料
頁面1新增如下**:
intent intent = newintent();
intent.setclass(頁面1.
this, 頁面2.class
); bundle bundle = new
bundle();
intent.putextras(bundle);
//將bundle新增到intent,也可以在bundle中新增相應資料傳遞給下個頁面,例如:bundle.putstring("abc", "bbb");
startactivityforresult(intent, 0);//
跳轉並要求返回值,0代表請求值(可以隨便寫)
頁面2接收資料新增**如下:
intent intent = this.getintent();
bundle bundle =intent.getextras();
bundle.putstring("aaa", "back");//
新增要返回給頁面1的資料
intent.putextras(bundle);
this.setresult(activity.result_ok, intent);//
返回頁面1
this.finish();
頁面1接收返回資料:(需要重寫onactivityresult)
@overrideprotected
void onactivityresult(int requestcode, int
resultcode, intent data)
}
Android手機通過wifi進行資料傳輸(四)
原始檔5 main.xml xml version 1.0 encoding utf 8 xmlns android android layout width fill parent android layout height fill parent android orientation vert...
用Delphi進行資料庫之間轉換
在實際應用中,可能會遇到將一種資料庫轉為另一種資料庫的情況,而delphi可以完成這 種功能。尤其是需要將以前的dbase資料庫結構及內容轉換成其它資料庫結構時,採用此方法 簡單 快速且安全。delphi是一種windows應用程式開發軟體。它速度快,具有強大且容易使用的視覺化開發 環境,並採用了具...
Android使用Volley框架進行資料傳輸
1.在 build.gradle 檔案中匯入包 匯入volley相關 implementation com.mcxiaoke.volley library 1.0.19 implementation androidx.localbroadcastmanager localbroadcastmanag...