您好,登錄后才能下訂單哦!
android開發中經常需要處理各種各樣不同的信息,而不同activity中發送和接收信息對于開發也是相當重要的。
方法一:
發送方代碼:
Intent intent = new Intent(MainActivity.this,SecondActivity.class); Bundle bundle=new Bundle();
bundle.putInt("position", position);
intent.putExtras(bundle);
startActivity(intent);
接收方代碼:
Bundle bundle = getIntent().getExtras();//獲取從mainactivity中傳過來的對象
int position = bundle.getInt("position");//根據設定的鍵值獲取對應的信息
方法二:
發送方:
Intent intent = new Intent(MainActivity.this,SecondActivity.class);
intent.putExtra("position", position);
intent.putExtra("name", name);
startActivity(intent);
接收方:
Intent intent = getIntent();
int position = intent.getIntExtra("position", 0);
String name = intent.getStringExtra("name");
接收到的內容就可以直接利用
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。