Android_在Fragment获取activity实现的接口以及通过bundle传递自定义对象

拜拜、爱过 提交于 2020-03-09 17:37:37

要获取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

 

 

 
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!