最外层parent失效问题
2019-08-28 本文已影响0人
兣甅
采用View.inflate(mContext, layoutId, null)加载布局Views时会导致view最外层的layout_width和layout_height失效
这时候就需要采用LayoutInflater.from(mContext).inflate(layoutResource, parent, false)的方式来读取
采用View.inflate(mContext, layoutId, null)加载布局Views时会导致view最外层的layout_width和layout_height失效
这时候就需要采用LayoutInflater.from(mContext).inflate(layoutResource, parent, false)的方式来读取