2012年10月15日 星期一

Android 頁面轉換 & 傳遞參數




傳遞參數 和開啟子視窗



        //呼叫子視窗 的設定
        Intent intent = new Intent();
        intent.setClass(MainActivity.this, ui.class);
       
       
        //MainActivity.this.finish(); //釋放父視窗
       
       
        //設定Bundle
        //設定傳送參數
        Bundle bundle = new Bundle();
        bundle.putString("String_name", "參數內容");
        intent.putExtras(bundle);
        startActivityForResult(intent, 0); //呼叫page2並要求回傳值
       
       
        startActivity(intent);//呼叫子視窗



於子視窗 onCreate() 接收參數


//設定Bundle 接收父視窗的參數
Bundle bundle = this.getIntent().getExtras();
HostIP = bundle.getString("String_name");

0 意見:

張貼留言

 

MangoHost Copyright © 2009 Cookiez is Designed by Ipietoon for Free Blogger Template