super.onCreate(icicle);
Log.d("MainActivity", "-------------------------------------------------------");
// If we are starting afresh, start at the app list.
final FragmentManager fm = getSupportFragmentManager();
if (fm.findFragmentById(android.R.id.content) == null) {
fm.beginTransaction().add(android.R.id.content, new AppListFragment()).commit();
}