其他分享
首页 > 其他分享> > 在Fragment中使用findViewById方法

在Fragment中使用findViewById方法

作者:互联网

View view = null;

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

//方法1:在 onCraeteView中,将 inflater 填充视图后返回的view存储下来,之后绑定UI组件用该 view 的 findViewById 方法
 void bindView(){
     Button button = view.findViewById(R.id.btn);
 }

//方法2:不需要将 onCreateView 中的 view 存储下来,直接使用 getView() 方法
void bindView1(){
    Button button = getView().findViewById(R.id.btn);
}

标签:getView,findViewById,Fragment,inflater,null,方法,view
来源: https://blog.csdn.net/weixin_45713992/article/details/119078844