在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);
}
上一篇:(Java实现) 过河卒


下一篇:输入框事件监听TestFiled