All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.actionbarsherlock.sample.demos.TabNavigationCollapsed Maven / Gradle / Ivy

package com.actionbarsherlock.sample.demos;

import android.os.Bundle;

public class TabNavigationCollapsed extends TabNavigation {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        //The following two options trigger the collapsing of the main action bar view.
        //See the parent activity for the rest of the implementation
        getSupportActionBar().setDisplayShowHomeEnabled(false);
        getSupportActionBar().setDisplayShowTitleEnabled(false);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy