Hide Or Remove Action Bar On Specific Activity | Android
Solution 1:
In your AndroidManifest.xml use NoActionBar theme for your Activity like this:
<activityandroid:name=".SignUpActivity"android:theme="@style/AppTheme.NoActionBar"/>
and in your styles.xml
<stylename="AppTheme.NoActionBar"><itemname="windowActionBar">false</item><itemname="windowNoTitle">true</item></style>
Solution 2:
from within your activity:
getActionBar().hide();
or
getSupportActionBar().hide();
I would suggest to migrate to ToolBar, new Android API for the same purpose. The main benefit of ToolBar is that you can treat it like other views, it guarantees to you a more flexible approach.
Solution 3:
<!-- Base application theme. --><stylename="AppTheme"parent="Theme.AppCompat.Light.NoActionBar"><!-- Customize your theme here. --><itemname="colorPrimary">@color/colorPrimary</item><itemname="colorPrimaryDark">@color/colorPrimaryDark</item><itemname="colorAccent">@color/colorAccent</item></style>
Solution 4:
If you have an ActionBar, you can use getActionBar().hide();
If you have a SupportActionBar, you can use getSupportActionBar().hide();
Solution 5:
Remove Action Bar on specific Activity go to Activity java file here your Activity class extends with AppCompatActivity remove the AppCompatActivity and extends with Activity and go to xml file and select Theme NoTitleBar or go to Manifests file select your Activity and add Theme on your Activity android:theme="@android:style/Theme.NoTitleBar"/>
Post a Comment for "Hide Or Remove Action Bar On Specific Activity | Android"