我必须开发一个应用程序,允许用户浏览图片并写一些关于他的信息,所有这些信息都将存储在一个带有人名的类中,在他按下 NextButton 之后,活动应该在第二个将他移动到具有这些信息的另一个活动活动他会输入另一个关于他的信息,
在第三个活动中,我应该收到所有这些信息。然后从(第 1 和第 2)活动中,在第 3 活动中显示,,
我的问题是:
1-如何移动多个信息。我编写了一个移动字符串和其他代码来移动图片的代码,但我无法将它们相互结合!
2-如何将在第二个活动中键入的信息插入到 Person 类的同一对象中?
希望我的问题和我的情况很清楚!
多谢
肖莫克 =)
----------------------更新中-------------- --------------
// this is for String info
String FullPersonInfo = person1.toString();
Bundle basket = new Bundle();
basket.putString("key", FullPersonInfo);
Intent intent = new Intent(Form_1.this,Form_2.class);
intent.putExtras(basket);
startActivity(intent);
// I'm confusing how can I add image when i try this code it doesn't work
intent.putExtra("URI", selectedImageUri.toString() );