Android中View对象的实例化方式

本文详细介绍了Android中View对象的四种实例化方式:通过findViewById、View.inflate、LayoutInflater.inflate以及Fragment的onCreateView,着重讲解了每种方法的使用场景和注意事项。
摘要由CSDN通过智能技术生成
        Android中View对象的实例化,主要有以下四种方式:

      (1)使用findViewById根据resId实例化View或者ViewGroup对象。

        这种方式在根据xml生成View或ViewGroup对象时被普遍使用。不过,这种方式也存在较大限制,要求resId标识的视图必须严格是方法调用对象的子视图。

View mView = parentView.findViewById(R.res.layout_star_view); 

      (2)调用View.inflate,实例化View或者ViewGroup对象。

        View.inflate主要用于自定义View场景,该方法的第三个参数为父视图,若该参数为null,或者传入的viewGroup的rootview为null,view.getLayoutParams()无法获取视图的布局参数。

View view = View.inflate(this, R.layout.layout_pager_guide_1, null);

      (3)调用inflater.inflate方法,动态实例化出View或者ViewGroup对象。

        LayoutInflater的inflate方法,除了需要传入Context和Xml布局中的resId外,还有一个可选参数,用来标识生成的view是否需要挂载到父View上。如果该参数传入false,表示允许生成的View不添加到ViewGroup中,后续通过view.getLayoutParams()可以获得该视图的各种布局参数并允许通过代码动态调整。这对在RecyclerView等场景动态修改ViewHolder的布局参数非常有用。

LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(R.layout.layout_star_view_item, parent, false);
//获取LayoutInflater的三种方式
LayoutInflater inflater = getLayoutInflater(); //调用Activity的getLayoutInflater()
LayoutInflater inflater =(LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LayoutInflater inflater = LayoutInflater.from(context);

      (4)重写Framgment的onCreateView方法,用inflater动态渲染view。

        在Framgment等特定场景,inflater会从函数外部传入,开发者无需自己获取。

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_square, null);
    initView(view);
    return view;
}

     

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值