Trying to make the Fragments example work on lower than 11 SDK, I get an error in
setListAdapter(new ArrayAdapter<String>(getActivity(),
android.R.layout.simple_list_item_activated_1, Shakespeare.TITLES));
saying "simple_list_item_activated_1" cannot be resolved or is not a field". In import i have
import com.example.android.apis.R;
import com.example.android.apis.Shakespeare;
What wrong is in here?