編輯:關於Android編程
本文實例講述了Android頁面之間進行數據回傳的方法。分享給大家供大家參考,具體如下:
要求:頁面1跳轉到頁面2,頁面2再返回頁面1同時返回數據
頁面1添加如下代碼:
Intent intent = new Intent(); 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)
@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == 0 && resultCode == Activity.RESULT_OK) { Bundle bundle = data.getExtras(); gameView.backString = bundle.getString("aaa"); Toast.makeText(this, backString, Toast.LENGTH_SHORT).show(); } }
更多關於Android相關內容感興趣的讀者可查看本站專題:《Android線程與消息機制用法總結》、《Android編程之activity操作技巧總結》、《Android調試技巧與常見問題解決方法匯總》、《Android開發入門與進階教程》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控件用法總結》
希望本文所述對大家Android程序設計有所幫助。
關於滑動沖突在Android開發中,如果是一些簡單的布局,都很容易搞定,但是一旦涉及到復雜的頁面,特別是為了兼容小屏手機而使用了ScrollView以後,就會出現很多點擊
核心類:package test.com.opengles3_1;import android.opengl.GLES20;import android.opengl.M
Android實現功能:Listview嵌套viewpager仿淘寶搜狐視頻主頁面,和listview的下拉刷新。直接上圖下面給出我源碼的主要文件構成:MyListVie
1.修改SDK版本: 打開File--Project Structure... Modules--app--Properties