当前位置: 代码迷 >> Android >> NullPointerException:在片段类中调用setAdapter
  详细解决方案

NullPointerException:在片段类中调用setAdapter

热度:70   发布时间:2023-08-04 11:00:31.0

我正在尝试使用片段类创建RelativeLayout,但是当我在populateListView函数中调用ListView setAdapter方法时,我有一个java.lang.NullPointerException,并且我找不到我的代码有什么问题。 谢谢!!

我的片段课

public class ProductInFridge extends Fragment {

private View rootView;

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{


    rootView = inflater.inflate(R.layout.allproductinfridge,  container, false);

    populateListView();

    return rootView;

}

private void populateListView() {

    ArrayAdapter<Product> adapter = new MyListAdapter(getActivity(),R.layout.item_view, populateList());
    ListView list = (ListView) rootView.findViewById(R.id.AllProdlistView);
    list.setAdapter(adapter);

}

private List<Product> populateList(){

    List<Product> product = new ArrayList<Product>();


    product.add(new Product("Prod_1","01234242143",1,R.drawable.productt));
    product.add(new Product("Prod_2","012313123112",2,R.drawable.productt));
    product.add(new Product("Prod_3","24234234242",3,R.drawable.productt));

    return  product;
}


private class MyListAdapter extends ArrayAdapter<Product> {


    private List<Product> prod;


    public MyListAdapter(Context context, int view, List<Product> passedProd) {

        super(context, view , passedProd);

        prod = passedProd;

    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {

        View itemView;




        itemView = getActivity().getLayoutInflater().inflate(R.layout.item_view,parent,false);



        //Find the product

        Product currentProd = prod.get(position);



        //Fill the view

        ImageView imageView = (ImageView)itemView.findViewById(R.id.imageView);
        imageView.setImageResource(currentProd.getPhotoID());

        //Name

        TextView nameTxt = (TextView)itemView.findViewById(R.id.item_txtName);
        nameTxt.setText(currentProd.getName());

        //BarCode

        TextView BarCodeTxt = (TextView)itemView.findViewById(R.id.item_txtBarCode);
        BarCodeTxt.setText(currentProd.getBarCode());

        return itemView;


    }
}
}

这是带有allproductinfridge布局的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFCC00"
android:id="@+id/AllProd_layout">


<RelativeLayout
    android:layout_width="200dp"
    android:layout_height="match_parent"
    android:background="#FFFFFFFF"
    android:id="@+id/Category_list">

    <android.support.design.widget.NavigationView
        android:id="@+id/main_drawer"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:itemIconTint="@color/colorAccent"
        app:itemTextColor="@color/colorTextSecondary"
        app:menu="@menu/allproductmenu" />

</RelativeLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/AllProductList"
    android:layout_toRightOf="@+id/Category_list"
    android:layout_toEndOf="@+id/Category_list">

    <ListView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/AllProdlistView"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

和item_view:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">

<ImageView
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:id="@+id/imageView"
    android:src="@drawable/productt" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:text="Product Name"
    android:id="@+id/item_txtName"
    android:layout_marginLeft="45dp"
    android:layout_marginStart="45dp"
    android:layout_marginTop="30dp"
    android:textSize="30sp"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/imageView"
    android:layout_toEndOf="@+id/imageView" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textAppearance="?android:attr/textAppearanceSmall"
    android:text="BarCode"
    android:id="@+id/item_txtBarCode"
    android:layout_below="@+id/item_txtName"
    android:layout_alignLeft="@+id/item_txtName"
    android:layout_alignStart="@+id/item_txtName"
    android:layout_marginLeft="53dp"
    android:layout_marginStart="53dp" />
</RelativeLayout>

Android logcat:

01-02 01:20:21.410 3355-3355/slidenerd.vivz.navigationviewdemo E/AndroidRuntime: FATAL EXCEPTION: main
01-02 01:20:21.410 3355-3355/slidenerd.vivz.navigationviewdemo E/AndroidRuntime: Process: slidenerd.vivz.navigationviewdemo, PID: 3355
01-02 01:20:21.410 3355-3355/slidenerd.vivz.navigationviewdemo E/AndroidRuntime: java.lang.NullPointerException
01-02 01:20:21.410 3355-3355/slidenerd.vivz.navigationviewdemo E/AndroidRuntime:     at slidenerd.vivz.navigationviewdemo.ProductInFridge.populateListView(ProductInFrid ge.java:44)
01-02 01:20:21.410 3355-3355/slidenerd.vivz.navigationviewdemo E/AndroidRuntime:     at slidenerd.vivz.navigationviewdemo.ProductInFridge.onCreateView(ProductInFridge.java:34)
01-02 01:20:21.410 3355-3355/slidenerd.vivz.navigationviewdemo E/AndroidRuntime:     at android.support.v4.app.Fragment.performCreateView(Fragment.java:1789)

您必须先扩大视图,然后找到您的元素:

View rootView = inflater.inflate(R.layout.allproductinfridge,  container, false);
ListView list = (ListView) rootView.findById(R.id.AllProdlistView);
//Now you can set your adapter

验证您的onCreateView()方法。 您正在调用populateListView(),然后通过执行以下操作返回一个全新的膨胀布局

return inflater.inflate(R.layout.allproductinfridge, container, false);

相反,您应该在onCreateView()中进行操作。 首先,将视图膨胀并将其保存在变量中。 设置必要的适配器/侦听器,然后返回视图。

设置按钮侦听的示例

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

        view = inflater.inflate(R.layout.smart_tv_controller_fragment, container, false);
        upButton = (Button) view.findViewById(R.id.smart_tv_controller_framgment_up_button);
        upButton.setOnClickListener(this);
        return view;
     }

视图将首先被放大。 然后在展开视图内找到必要的组件(按钮或listview)并设置侦听器/适配器,然后返回视图。

  相关解决方案