Android學習筆記(十一)——從意圖返回結果

來源:互聯網
上載者:User

標籤:android   activity   intent   返回結果   ant   

從意圖返回結果


startActivity()方法調用另一個活動,但並沒有返回結果給當前活動。此時如想從一個活動中回傳資料,就要使用startActivityForResult()方法。


點此擷取完整代碼~                                                                   


1、使用上一篇中建立的項目,在secondactivity.xml檔案中添加文字框和按鈕,代碼如下:

    <TextView        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:text="Please enter your name" />    <EditText        android:id="@+id/txt_username"        android:layout_width="fill_parent"        android:layout_height="wrap_content" />    <Button        android:id="@+id/btn_OK"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:onClick="onClick"        android:text="OK" />

2、在SecondActivity.java檔案中添加onClick()方法,代碼如下:

public void onClick(View v) {Intent data = new Intent();EditText txt_username = (EditText) findViewById(R.id.txt_username);// 使用setData()方法使用一個Intent對象回傳資料data.setData(Uri.parse(txt_username.getText().toString()));// setResult()方法設定結果碼和回傳給調用活動的資料setResult(RESULT_OK, data);// 關閉Activityfinish();}

3、在MainActivity.java檔案中添加如下代碼:

在onClick()方法中:

startActivityForResult(new Intent(this, SecondActivity.class),request_Code);// 此方法調用一個活動並等待從此活動返回結果:傳入Intent對象和請求碼(僅為一個整數值,用於標識正在調用的活動)
自己定義的onActivityResult()方法:

// 當一個活動返回時,必須調用自己實現的onActivityResult()方法public void onActivityResult(int requestCode, int resultCode, Intent data) {if (requestCode == request_Code) {// 檢驗請求碼if (resultCode == RESULT_OK) {// 檢驗結果碼Toast.makeText(this, data.getData().toString(),Toast.LENGTH_SHORT).show();}}}


4、運行,效果如下:

點擊按鈕:



輸入名字,點擊OK:


總結:

1、調用onstartActivityForResult()方法並設定好請求碼;

2、在被調用活動中,通過Intent對象回傳資料並設定結果碼(setData()方法和setResult()方法);

3、在調用活動中,自己定義onActivityResult()方法,先校正請求碼和結果碼,再進行其它處理。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.