gpt4 book ai didi

java - 通过 SQLiteOpenHelper 从 Sqlite 插入和读取数据

转载 作者:太空宇宙 更新时间:2023-11-04 12:04:57 27 4
gpt4 key购买 nike

我对在 Activity 之间传递数据有疑问。是否可以从主 Activity 中打开几个下一个 Activity ,并将上次打开的结果返回到根 Activity 以及如何?我添加了屏幕截图,以便更好地理解我的意思。感谢您的回答。 enter image description here

最佳答案

处理这个问题@Sahil Lombar

Intent i = new Intent(this, FirstActivity.class);
i.putExtra("data", "data");
startActivity(i);

在其他 Activity 中我们可以

//firt validate if value extra "data" it was sent
if(getIntent().hashExtra("data") {
String value = getIntent().getStringExtra("data");
Log.d("SecondActivity", value);
}

使用 String、int、boolean、double、Byte 和数组

更多.. https://developer.android.com/reference/android/content/Intent.html

关于java - 通过 SQLiteOpenHelper 从 Sqlite 插入和读取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40470306/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com