Gridview

用gridview显示图片 并把图片信息传到另一个页面显示。当单击一item时就跳转到前一个页面进行编辑,这个功能该怎么实现

xiaohuanhuan
浏览 1199回答 3
3回答

溜达溜达

界面传值示例:传值界面Intent intent = new Intent(A.this, B.class); /* 通过Bundle对象存储需要传递的数据 */ Bundle bundle = new Bundle(); /*字符、字符串、布尔、字节数组、浮点数等等,都可以传*/ bundle.putString("Name", "慕课网"); bundle.putBoolean("Isgood", true); /*把bundle对象给Intent*/ intent.putExtras(bundle); startActivity(intent);获取值界面/*获取Intent中的Bundle对象*/ Bundle bundle = this.getIntent().getExtras();        /*获取Bundle中的数据,注意类型和key*/ String name = bundle.getString("Name"); boolean isgood = bundle.getBoolean("Isgood");

xiaohuanhuan

怎么把之前的数据赋到修改页面呢

溜达溜达

在适配器的getItem()中实现,根据你的需求,或者对当前的Item,或者图片对象进行设置
打开App,查看更多内容
随时随地看视频慕课网APP