Android Studio - Action Bar remove

余生颓废 提交于 2019-12-02 19:15:52
goonerDroid

in your oncreate() method use this

getActionBar().hide();

If your minSdkVersion is 10 or lower, instead use:

getSupportActionBar().hide();
malamute84

I had this issue too. I went to styles.xml and changed

parent="Theme.AppCompat.Light.DarkActionBar" 

to

parent="Theme.AppCompat.Light.NoActionBar"

and that removed it from all my activities.

You can try this. It works for me

Add it in style.xml

<style name="AppTheme.NoActionBar" parent="Theme.AppCompat.Light.DarkActionBar">
      <item name="windowActionBar">false</item>
      <item name="windowNoTitle">true</item>
      <item name="android:windowFullscreen">true</item>
</style>

and use the style at manifest.xml.

android:theme="@style/AppTheme.NoActionBar"
Ashikur Rahman
getActionBar().hide();

I think this should work.

For android studio You can go to styles.xml and change parent="Theme.AppCompat.Light.DarkActionBar" to parent="Theme.AppCompat.Light.NoActionBar" and in Eclipse it can be changed in manifest file

  <activity
        android:name="com.ExcellenceTech.webview.MainActivity"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen" >

In AndroidManifest.xml and acitivity section put this code.

android:theme="@style/Theme.AppCompat.Light.NoActionBar"

You hide action bar by with different ways.

1.action bar hidden through the manifest xml file (non Java Programming), then the easy way is to add the following attribute in Activity tag:

 android:theme="@style/Theme.NoActionBar"

If custom Theme is created then it is convenient to create another style extending the custom theme.

 <item name="android:windowActionBar">false</item>
 <item name="android:windowNoTitle">true</item>

or

ActionBar actionBar = getActionBar(); OR getSupportActionBar();
actionBar.hide();

getSupportActionBar().hide(); 
  or 
getActionBar().hide();
getActionBar().hide();

or

getSupportActionBar().hide();

But the change might not appear in the xml design.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!