I am stuck with an NPE.
I am trying to access/get the value of an Edittext from a child fragment unfortunately it returns an NPE.
here is the the Child Fragment (MoincomeexpFragment) :
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        view = inflater.inflate(R.layout.fragment_moincomeexp, container, false);
appSalary = view.findViewById(R.id.appSalary_edit_text);
return view;
    }
and this is for the Parent Activity:
String AppSalary;
AppSalary = MoincomeexpFragment.appSalary.getText().toString()
 
     
     
    