use of ingage.ingage20.fragments.FrontPageFragment in project iNGAGE by davis123123.
the class NavigationDrawer method showHome.
public void showHome() {
final Fragment fragment = new FrontPageFragment();
containingActivity.getSupportFragmentManager().beginTransaction().replace(fragmentContainerId, fragment, FrontPageFragment.class.getSimpleName()).setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN).commit();
// Set the title for the fragment.
final ActionBar actionBar = containingActivity.getSupportActionBar();
actionBar.setTitle(app_name);
closeDrawer();
}
use of ingage.ingage20.fragments.FrontPageFragment in project iNGAGE by davis123123.
the class NavigationDrawer method showHome.
public void showHome() {
final Fragment fragment = new FrontPageFragment();
containingActivity.getSupportFragmentManager().beginTransaction().replace(fragmentContainerId, fragment, FrontPageFragment.class.getSimpleName()).setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN).commit();
// Set the title for the fragment.
final ActionBar actionBar = containingActivity.getSupportActionBar();
actionBar.setTitle(app_name);
closeDrawer();
}
Aggregations