How to implements a ListFragment into your project from a Sample?
问题 I have a Pager adapter that will call a ListFragment like this: public Fragment getItem(int position) { Fragment fragment = new ListViewFragment(); // set arguments here, if required Bundle args = new Bundle(); fragment.setArguments(args); return fragment; Then I have a ListActivity that I want to change to ListViewFragment. public class ImageListActivity extends ListActivity implements RadioGroup.OnCheckedChangeListener { @Override protected void onCreate(Bundle savedInstanceState) { super