如果使用ViewPager+Fragment,一般都会写几个Fragment的类,每一个Fragment分别有对应的layout文件。
如果在MainActivity中使用findViewById()方法获取Fragment对应layout中的组件,例如获取Fragment中的按钮,则会抛出一个java.lang.NullPointerException的异常。
返回null的原因是:变量的作用域问题,就是在一个作用域中查找一个不属于该作用域的变量。在MainActivity类里,我们使用了setContentView(R.layout.activity_main),则我们的作用域为R.layout.activity_main,因此Fragment的layou中的组件在R.layout.activity_main中肯定找不到,所以抛出空指针的异常。(纠结了一天的问题,发现代码没有错误,却一直不知道为何出错 orz)
既然知道了出错的原因,那我们本意就是想要使用Fragment中的组件,那怎样获取Fragment中的组件呢?
最主要的思想是:在Fragment类中的onCreateView()方法中获取组件。
给出一个例子:
- public class MyFragment extends Fragment{
- private Button button;
- private View view;
- @Override
- public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState){
- view=inflater.inflate(R.layout.contact_fragment, null, false);
- button=(Button)view.findViewById(R.id.button);
- button.setOnClickListener(new OnClickListener() {
- @Override
- public void onClick(View v) {
- //实现按钮功能
- }
- });
- }
- view=inflater.inflate(R.layout.contact_fragment, null, false);
我们在Fragment中查找该组件必须指定view,则view.findViewById(R.id.button);