在Android開發中,可以使用Intent來傳遞數據。下面是一些常用的方法:
Intent intent = new Intent(this, SecondActivity.class);
intent.putExtra("key", "value");
startActivity(intent);
在接收端的Activity中,可以通過getIntent()方法獲取傳遞過來的數據,示例代碼如下:
Intent intent = getIntent();
String value = intent.getStringExtra("key");
Intent intent = new Intent(this, SecondActivity.class);
Bundle bundle = new Bundle();
bundle.putString("key1", "value1");
bundle.putInt("key2", 123);
intent.putExtras(bundle);
startActivity(intent);
在接收端的Activity中,可以通過getIntent()方法獲取傳遞過來的Bundle,示例代碼如下:
Intent intent = getIntent();
Bundle bundle = intent.getExtras();
String value1 = bundle.getString("key1");
int value2 = bundle.getInt("key2");
首先,在自定義對象中實現Parcelable接口:
public class CustomObject implements Parcelable {
// 實現Parcelable接口的方法
}
然后,在傳遞數據時將自定義對象放入Intent中:
Intent intent = new Intent(this, SecondActivity.class);
CustomObject obj = new CustomObject();
intent.putExtra("custom_object", obj);
startActivity(intent);
在接收端的Activity中,可以通過getParcelableExtra()方法獲取傳遞過來的自定義對象:
Intent intent = getIntent();
CustomObject obj = intent.getParcelableExtra("custom_object");
通過上述方法,可以方便地在不同的Activity之間傳遞數據。需要注意的是,傳遞的數據類型必須是可序列化的或Parcelable的。