返回Acitivity時傳遞數(shù)據(jù)

返回Acitivty時需要傳遞數(shù),有以下幾個關(guān)鍵地方
  • startActivityForResult(intent, SMS_LIST); 告訴系統(tǒng),這個activity:ContactActivity.class銷毀時,會返回?cái)?shù)據(jù)
  • onActivityResult 方法的監(jiān)聽
  • setResult(1, data);
// MainActivity.java
public class MainActivity extends Activity {
    static final int CONTACT_LIST = 10;
    static final int SMS_LIST = 20;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    public void click(View v) {
        Intent intent = new Intent(this, ContactActivity.class);
        // startActivity(intent);
        // 告訴系統(tǒng),這個activity:ContactActivity.class銷毀時,會返回?cái)?shù)據(jù)
        startActivityForResult(intent, CONTACT_LIST);
    }
    public void quick(View v) {
        Intent intent = new Intent(this, SMSActivity.class);
        // startActivity(intent);
        // 告訴系統(tǒng),這個activity:ContactActivity.class銷毀時,會返回?cái)?shù)據(jù)
        startActivityForResult(intent, SMS_LIST);
    }
    // 當(dāng)一個應(yīng)用返回?cái)?shù)據(jù)的activity被銷毀了,此方法會調(diào)用,用戶接收數(shù)據(jù)
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        EditText et;
        if (requestCode == CONTACT_LIST) {
            et = (EditText) findViewById(R.id.et);
            et.setText(data.getStringExtra("name"));
        }
        if (requestCode == SMS_LIST) {
            et = (EditText) findViewById(R.id.content_et);
            et.setText(data.getStringExtra("content"));
        }
    }
}  
// ContactAcitivity.java
    // 虛構(gòu)幾個聯(lián)系人
    String[] objects = new String[] { "芙蓉", "四大皆空", "梅西", "傻逼" };
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_contact);
        ListView listView = (ListView) findViewById(R.id.lv);
        listView.setAdapter(new ArrayAdapter<String>(this,
                R.layout.item_contact, R.id.tv, objects));
        // 對ListView設(shè)置點(diǎn)擊監(jiān)聽,我們需要知道用戶什么時候點(diǎn)擊了條目,還要知道用戶點(diǎn)擊的條目
        listView.setOnItemClickListener(new OnItemClickListener() {
            // 用戶點(diǎn)擊了哪一個條目,通過這個參數(shù)知道
            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                String text = objects[position];
                Intent data = new Intent();
                data.putExtra("name", text);
                // Activity一旦被銷毀,這個data就會傳到activity的調(diào)用者
                setResult(0, data);
                finish();
            }
        });
    }
}
//activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.msgsend.MainActivity" >
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >
        <EditText
            android:id="@+id/et"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:hint="請輸入聯(lián)系人" />
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:onClick="click"
            android:text="請選擇聯(lián)系人" />
    </LinearLayout>
    <EditText
        android:id="@+id/content_et"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:lines="5" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="quick"
        android:text="選擇快捷回復(fù)" />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="send"
        android:text="發(fā)送" />
</LinearLayout>  
// activity_contact.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <ListView
        android:id="@+id/lv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>  
// item_contact.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <TextView
        android:id="@+id/tv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="20sp" />
</LinearLayout>  
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末诗宣,一起剝皮案震驚了整個濱河市凭戴,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件痕钢,死亡現(xiàn)場離奇詭異宛琅,居然都是意外死亡道川,警方通過查閱死者的電腦和手機(jī)联逻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進(jìn)店門搓扯,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人包归,你說我怎么就攤上這事∏撸” “怎么了公壤?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長椎椰。 經(jīng)常有香客問我厦幅,道長,這世上最難降的妖魔是什么慨飘? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任确憨,我火速辦了婚禮译荞,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘休弃。我一直安慰自己吞歼,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布塔猾。 她就那樣靜靜地躺著篙骡,像睡著了一般。 火紅的嫁衣襯著肌膚如雪丈甸。 梳的紋絲不亂的頭發(fā)上糯俗,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天,我揣著相機(jī)與錄音睦擂,去河邊找鬼得湘。 笑死,一個胖子當(dāng)著我的面吹牛顿仇,可吹牛的內(nèi)容都是我干的淘正。 我是一名探鬼主播,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼夺欲,長吁一口氣:“原來是場噩夢啊……” “哼跪帝!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起些阅,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤伞剑,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后市埋,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體黎泣,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年缤谎,在試婚紗的時候發(fā)現(xiàn)自己被綠了抒倚。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡坷澡,死狀恐怖托呕,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情频敛,我是刑警寧澤项郊,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站斟赚,受9級特大地震影響着降,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜拗军,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一任洞、第九天 我趴在偏房一處隱蔽的房頂上張望蓄喇。 院中可真熱鬧,春花似錦交掏、人聲如沸妆偏。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽楼眷。三九已至,卻和暖如春熊尉,著一層夾襖步出監(jiān)牢的瞬間罐柳,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工狰住, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留张吉,地道東北人。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓催植,卻偏偏與公主長得像肮蛹,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子创南,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容