Thank you in advance to everyone who takes a look at this question, especially to those who try to answer! This website has been of great help to me!
I am currently
private class are not instantiable:
Replace below code, public abstract class HomeScreen extends ListActivity implements LoaderManager.LoaderCallbacks
to:
public class HomeScreen extends ListActivity implements LoaderManager.LoaderCallbacks
It will work.
Your class is an abstract classes.
Abstract classes are by definition not instantiable.
Abstract classes are by definition not instantiable.
change
public abstract class HomeScreen extends ListActivity
to
public class HomeScreen extends ListActivity