Android學習隨記2(Intent實現Activity跳轉)

來源:互聯網
上載者:User

標籤:

一、簡單的活動間跳轉

 btn1 = (Button)findViewById(R.id.first_btn1);        btn1.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {               Intent intent = new Intent(FirstActivity.this,SecondActivit.class);                startActivity(intent);            }        });

顯式跳轉-從FirstActivity跳轉到SecondActivity,不傳遞其他任何資訊。

二、隱式action方式跳轉

目的活動中添加action條件 my.action,category設定可為預設DEFAULT

...        <activity android:name=".SecondActivit">            <intent-filter>                <action android:name="my.action" />                 <category android:name="android.intent.category.DEFAULT" />            </intent-filter>        </activity>...

源活動中設定Intent跳轉期望響應的action,須與目的活動中設定的action一致。

        btn1 = (Button)findViewById(R.id.first_btn1);        btn1.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                 Intent intent = new Intent("my.action");                 startActivity(intent);            }        });

三、活動間跳轉時資料的傳遞

通過Intent 提供的介面函數putExtra以索引值的方式傳遞,源活動代碼如下:

      btn1 = (Button)findViewById(R.id.first_btn1);        btn1.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                 Intent intent = new Intent("my.action");                intent.putExtra("myTag","myValue");                startActivity(intent);            }        });

此時,目的活動可通過接收到的Intent擷取傳遞過來的資料,需保證的取值正確。

    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_second);        Intent intent = getIntent();        String str = intent.getStringExtra("myTag");        Toast.makeText(this,str,Toast.LENGTH_SHORT).show();    }

 

Android學習隨記2(Intent實現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.