I don't know why app crashes when reaching for id of others element. Do I need to add something more or give my phone permission?
    @Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
                        @Nullable Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    View searchProduct = inflater.inflate(R.layout.fragment_search_category, container, false);
    Spinner productCategory = searchProduct.findViewById(R.id.spnCategory);
    category = productCategory.getSelectedItem().toString();
    productName = searchProduct.findViewById(R.id.edtSearch).toString();
    //getAPIDataProduct(category, productName);
    return searchProduct;
}
 
    