android 中遇到的空指针异常

异常信息:java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.GridView.setAdapter(android.widget.ListAdapter)' on a null object reference


1、homePageTab = (LinearLayout) findViewById(R.layout.home_page_tab);
2、goodsGridView = (GridView) view01.findViewById(R.id.gridView);
3、LayoutInflater inflater = LayoutInflater.from(this);
        View view01 = inflater.inflate(R.layout.home_page_tab, null);

在代码中执行到第二步报错,出现空指针异常,打日志发现homePageTab是空的,第一步并不是真正的得到这个控件对象,只有得到这个对象了才可以调用它的方法。

第三步就是把布局文件转化成对应的视图对象,这样就可以调用其方法了。

正确步骤为:

LayoutInflater inflater = LayoutInflater.from(this);
        View view01 = inflater.inflate(R.layout.home_page_tab, null);
goodsGridView = (GridView) view01.findViewById(R.id.gridView);


你可能感兴趣的:(android)