刚开始用动作栏开发。有这个问题。我按照自己的意愿设置了自定义操作栏(左侧有点位置按钮,但仍然无法按下:))。我已从动作栏中删除了图标,后退按钮,tittle。 问题是,当我启动应用程序Tittle bar(带有图标和tittle)闪烁一秒钟,然后出现自定义操作栏... 我怎么能阻止这种飞溅?
我看到一些答案包括从Android主题中删除TittleBar,但由于TittleBar和ActionBar基本相同,删除TittleBar会导致ActionBar消失。
答案 0 :(得分:0)
如果你想特别删除一个Activity中的ActionBar,处理它的最佳方法是使用Theme。
在AndroidManifest中,使用您的应用主题声明您的应用程序,并且您可以特别声明具有一个主题的活动:
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name="SplashActivity"
android:theme="@style/AppThemeNoTitle"
android:label="@string/app_name"/>
<!-- ... YOUR OTHERS ACTIVITIES -->
</application>
在styles.xml中:
<!-- Application theme. -->
<style name="AppTheme" parent="Theme.Sherlock.Light">
<item name="actionBarStyle">@style/Widget.Styled.ActionBar</item>
</style>
<style name="AppThemeFullScreen" parent="AppTheme">
<item name="android:windowNoTitle">true</item>
</style>