You dont call setContentView in fragments, in fact you need to return a View from onCreateView.
Try replacing:
setContentView(new SampleView(this));
With this:
return new SampleView(this);
You dont call setContentView in fragments, in fact you need to return a View from onCreateView.
Try replacing:
setContentView(new SampleView(this));
With this:
return new SampleView(this);