我是靠谱客的博主 背后期待,最近开发中收集的这篇文章主要介绍Parcel.writeStrongBinder 与 Parcel.writeStrongInterface 的区别,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
看源码
android.os.Parcel
/**
* Write an object into the parcel at the current dataPosition(),
* growing dataCapacity() if needed.
*/
public final void writeStrongInterface(IInterface val) {
writeStrongBinder(val == null ? null : val.asBinder());
}
只 是把 IInterface 转成了 Binder 对象 ,其实2者是一样的 。
http://item.taobao.com/item.htm?spm=a230r.1.14.107.Dxvf1N&id=36480821704&_u=9ddbah0c75
最后
以上就是背后期待为你收集整理的Parcel.writeStrongBinder 与 Parcel.writeStrongInterface 的区别的全部内容,希望文章能够帮你解决Parcel.writeStrongBinder 与 Parcel.writeStrongInterface 的区别所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复