So i am using fragments and trying to wire on click listeners on them.
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bun
You cannot use getView() until onCreateView() returns since it is the method in charge of creating said view. You should change your code to
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View contentView = inflater.inflate(R.layout.layout1, null);
startButton = (Button) contentView.findViewById(R.id.button);
Or alternatively, override onViewCreated() and implement your Button setup in that method (using getView().