我是android新手。我的应用程序基本上是购物车。现在我想要帮助。 当用户从自定义列表视图中选择项目时。这些项目显示图像,名称和数量到下一个活动,如查看购物车。我一直在搜索教程,但找不到完整的。谁能引导我通过正确的代码我怎么能这样做?
答案 0 :(得分:1)
制作商品的模型Parcelable
。然后在您当前选择项目的活动中写下:
Intent intent = new Intent(CurrentActivity.this, NextActivity.class);
intent.putExtra("ITEM", selectedItemObject);
startActivity(intent);
在OnCreate()中的NextActivity中写道:
Bundle extras = getIntent().getExtras();
Item item extras.getParcelable("ITEM");
现在使用此项目对象执行任何操作。
答案 1 :(得分:0)
Use your can send data to another activity using bundle or Intent like that on your gridview.onItemClicklistener
Intent intent =new Intent(this,"your another activity name");
intent.putExtra("name","name");
intent.putExtra("image","imagepath");
staetActivity(intent);
另一个活动代码是
String name=getIntent().getStringExtra("name");
String imagePath=getIntent().getStringExtra("image");