中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中activity傳值的兩種方式

發布時間:2020-07-31 21:37:43 來源:網絡 閱讀:362 作者:matengbing 欄目:移動開發

第一種:第一個Activity

 /**
     * 通過這個方法跳轉到activity2界面*/
    public void gotoActivity2(View v){
    	//創建一個意圖
    	Intent intent=new Intent(this,MainActivity2.class);
    	
    	
    	//第一種傳值方式
    	Bundle bundle=new Bundle();
    	bundle.putString("name","zhangsan");
    	bundle.putInt("age", 23);
    	intent.putExtra("person", bundle);
    	//啟動另一個activity
    	startActivity(intent);
    }

第二個Activity

/**
	 * Activity被創建時調用
	 * 可以在該方法中初始化UI組件
	 * 該方法調用完畢會調用onStart()方法
	 * */
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main2);
        System.out.println("MainActivity2-onCreate()");
        
        
        //獲取上一個activity傳過來的參數
        Intent intent=getIntent();
        Bundle bundle=intent.getBundleExtra("person");
        String name= bundle.getString("name");
        int age=bundle.getInt("age");
        System.out.println(name+"   :  "+age);
        TextView textView=(TextView) findViewById(R.id.textView2);
        textView.setText("name="+name+"  age="+age);
        
    }

第二種:activity1

      //第二種傳值方式
    intent.putExtra("name", "小白");
   startActivity(intent);

activity2

      Intent intent=getIntent();        
      String name2= intent.getStringExtra("name");
      TextView textView=(TextView) findViewById(R.id.textView2);
      textView.setText("name2="+name2);

傳遞自定義類型(自定義類,自定義類必須序列化)

activity1

            //傳遞自定義類型
    	    Cat cat=new Cat(1, "校花", 23);
    	    intent.putExtra("cat", cat);
    	    startActivity(intent);

activity2

            //第二種
            String name2= intent.getStringExtra("name");
            Cat cat=(Cat) intent.getSerializableExtra("cat");
            TextView textView=(TextView) findViewById(R.id.textView2);
            textView.setText("cat="+cat.toString());


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五指山市| 浙江省| 永嘉县| 虎林市| 远安县| 安远县| 威远县| 安塞县| 吉隆县| 凤冈县| 泰安市| 舒兰市| 麦盖提县| 康定县| 北流市| 霍山县| 阳城县| 莒南县| 乐山市| 天祝| 同仁县| 淮南市| 沙雅县| 泽州县| 榆社县| 额济纳旗| 磐安县| 枣庄市| 余干县| 潍坊市| 锦州市| 常山县| 巴林左旗| 唐山市| 白沙| 西畴县| 防城港市| 土默特右旗| 水城县| 丹巴县| 甘南县|