不飞则已,一飞冲天;不鸣则已,一鸣惊人。这篇文章主要讲述Android_在Fragment获取activity实现的接口以及通过bundle传递自定义对象相关的知识,希望能为你提供帮助。
【Android_在Fragment获取activity实现的接口以及通过bundle传递自定义对象】要获取activity中实现的接口,可以在Fragment里重写onAttach方法,如下:
public void onAttach(@NonNull Context context) { super.onAttach(context); if (context instanceof ShowItemAdapter.ShowDetail){ this.showDetail= (ShowItemAdapter.ShowDetail) context; }else { throw new RuntimeException(context.toString()+"havent impl interface"); } }
其中ShowDetail是context这个activity中实现的Show Item Adapter中的接口;
要将自己定义的Bean等对象在activity中传递,可以在这些对象类中实现 Parcelable 接口或是 Serializable 接口
如下:
public class ItemBean extends BmobObject implements Serializable { private String describe, tag, type, posi, username, bigtype,money; private String img, img_2, img_3; public String getMoney() { return money; }public void setMoney(String money) { this.money = "¥"+money; } }
需要传递的时候直接用bundle.putPracelable或是putSerializable
推荐阅读
- APP手势操作滑动
- android1
- 关于数组的合并arr.push()arr.push.apply()
- H5开发移动应用APP(店铺系列一)
- Android 7.x Toast BadTokenException处理
- Android 商城类亚博体育应用实战之购物车附源码
- es 修改 mapping 字段类型
- appium启动android真机
- @SpringBootApplication注解