Android入門:多個Activity之間切換原理介紹

來源:互聯網
上載者:User

大家都知道,一個Activity是一個介面,多個Activity表示多個介面,而多個介面的切換在應用中是重要的,而我們前面學Intent時也知道了使用Intent進行切換;

Intent用來啟用組件並附帶資料;

多個Activitiy切換的執行個體已經有介紹過,http://blog.csdn.net/xiazdong/article/details/7664757

此處只介紹原理及方法;

一、切換Activity的5種方式


Intent intent = new Intent();

(1)intent.setClass(this,OtherActivity.class);

(2)intent.setClassName(this,"com.xiazdong.OtherActivity");

(3)intent.setClassName("com.xiazdong","com.xiazdong.OtherActivity");
//此種方式用來啟用不同應用的Activity,只需要指定第一個參數:包名 為另一個應用即可;

(4)

Component comp = new Component(this,OtherActivity.class);

intent.setComponent(comp);

(5)Intent intent = new Intent(this,OtherActivity.class);


二、發送參數與接收參數方式


(1)putExtra方式:


發送

intent.putExtra("name","xiazdong");

intent.putExtra("age",20);

接收

String name = intent.getStringExtra("name");

int age = intent.getIntExtra("age");


(2)Bundle方式:


發送

Bundle bundle = new Bundle();

bundle.putString("name","xiazdong");

bundle.putInt("age",20);

intent.putExtras(bundle);

接收

Bundle bundle = intent.getExtras();

String name = bundle.getString("name");

int age = bundle.getInt("age");


三、帶傳回值的Activity






相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.