Android:What is difference between setFlags and addFlags for intent

前端 未结 3 543
暗喜
暗喜 2020-11-29 17:11

What is difference between setFlags and addFlags for intent. Could any one explain it please. Help Appreciated.

3条回答
  •  臣服心动
    2020-11-29 17:40

     public Intent addFlags(int flags) {
        mFlags |= flags;
        return this;
    }
    public Intent setFlags(int flags) {
        mFlags = flags;
        return this;
    }
    

    Just found this from the source code,for reference.

提交回复
热议问题