简体   繁体   English

更新到Android棒棒糖后的ActionBar样式

[英]ActionBar styling after updating to Android lollipop

I was developing custom ActionBar by selecting API19 yesterday today I updated support libraries and project to API21 with cause me into problem. 我昨天通过选择API19开发自定义ActionBar我更新了支持库和项目到API21,导致我遇到问题。 In my actionbar there is a menu-to-arrow button with I don't need and style of actionbar changes. 在我的操作栏中有一个菜单到箭头按钮,我不需要和动作栏样式的更改。

Before update: 更新前: 在此输入图像描述

After Update: 更新后: 在此输入图像描述

Following is the style.xml 以下是style.xml

<resources>
    <style name="AppBaseTheme" parent="Theme.AppCompat.Light.DarkActionBar">

    </style>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <item name="android:buttonStyle">@style/ButtonAppTheme</item>

        <item name="actionBarItemBackground">@drawable/selectable_background_apptheme</item>
        <item name="popupMenuStyle">@style/PopupMenu.Apptheme</item>
        <item name="dropDownListViewStyle">@style/DropDownListView.Apptheme</item>
        <item name="actionBarTabStyle">@style/ActionBarTabStyle.Apptheme</item>
        <item name="actionDropDownStyle">@style/DropDownNav.Apptheme</item>
        <item name="actionBarStyle">@style/ActionBar.Solid.Apptheme</item>
        <item name="actionModeBackground">@drawable/cab_background_top_apptheme</item>
        <item name="actionModeSplitBackground">@drawable/cab_background_bottom_apptheme</item>
        <item name="actionModeCloseButtonStyle">@style/ActionButton.CloseMode.Apptheme</item>

        <!-- Light.DarkActionBar specific -->
        <item name="actionBarWidgetTheme">@style/Theme.Apptheme.Widget</item>

    </style>

    <!-- Base application theme for Full screen Activities -->
    <style name="AppThemeFullScreen" parent="@android:style/Theme.Light.NoTitleBar.Fullscreen">
        <item name="android:buttonStyle">@style/ButtonAppTheme</item>
    </style>

    <!-- Button Style -->
    <style name="ButtonAppTheme" parent="android:Widget.Button">
        <item name="android:background">@drawable/btn_background</item>
        <item name="android:minHeight">48dip</item>
        <item name="android:minWidth">64dip</item>
        <item name="android:textColor">@color/btn_text_color_default</item>

    </style>


    <style name="ActionBar.Solid.Apptheme" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
        <item name="background">@drawable/ab_solid_apptheme</item>
        <item name="backgroundStacked">@drawable/ab_stacked_solid_apptheme</item>
        <item name="backgroundSplit">@drawable/ab_bottom_solid_apptheme</item>
        <item name="progressBarStyle">@style/ProgressBar.Apptheme</item>
    </style>

    <style name="ActionBar.Transparent.Apptheme" parent="@style/Widget.AppCompat.ActionBar">
        <item name="background">@drawable/ab_transparent_apptheme</item>
        <item name="progressBarStyle">@style/ProgressBar.Apptheme</item>
    </style>

    <style name="PopupMenu.Apptheme" parent="@style/Widget.AppCompat.PopupMenu">
        <item name="android:popupBackground">@drawable/menu_dropdown_panel_apptheme</item>
    </style>

    <style name="DropDownListView.Apptheme" parent="@style/Widget.AppCompat.ListView.DropDown">
        <item name="android:listSelector">@drawable/selectable_background_apptheme</item>
    </style>

    <style name="ActionBarTabStyle.Apptheme" parent="@style/Widget.AppCompat.ActionBar.TabView">
        <item name="android:background">@drawable/tab_indicator_ab_apptheme</item>
    </style>

    <style name="DropDownNav.Apptheme" parent="@style/Widget.AppCompat.Spinner.DropDown.ActionBar">
        <item name="android:background">@drawable/spinner_background_ab_apptheme</item>
        <item name="android:popupBackground">@drawable/menu_dropdown_panel_apptheme</item>
        <item name="android:dropDownSelector">@drawable/selectable_background_apptheme</item>
    </style>

    <style name="ProgressBar.Apptheme" parent="@style/Widget.AppCompat.ProgressBar.Horizontal">
        <item name="android:progressDrawable">@drawable/progress_horizontal_apptheme</item>
    </style>

    <style name="ActionButton.CloseMode.Apptheme" parent="@style/Widget.AppCompat.ActionButton.CloseMode">
        <item name="android:background">@drawable/btn_cab_done_apptheme</item>
    </style>

    <!-- this style is only referenced in a Light.DarkActionBar based theme -->
    <style name="Theme.Apptheme.Widget" parent="@style/Theme.AppCompat">
        <item name="popupMenuStyle">@style/PopupMenu.Apptheme</item>
        <item name="dropDownListViewStyle">@style/DropDownListView.Apptheme</item>
    </style>

</resources>

onCreate from MainActivity 来自MainActivity的onCreate

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mNavigationDrawerFragment = (NavigationDrawerFragment)
        getSupportFragmentManager().findFragmentById(R.id.navigation_drawer);
    // mTitle = getTitle();

    // Set up the drawer.
    mNavigationDrawerFragment.setUp(
        R.id.navigation_drawer, (DrawerLayout) findViewById(R.id.drawer_layout));

    actionBar = getSupportActionBar();
    // Toolbar toolbar =(Toolbar) findViewById(R.id.toolbar);
    // setSupportActionBar(toolbar);

    LayoutInflater mInflater = LayoutInflater.from(this);

    LayoutParams layout = new LayoutParams(
        LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
    View mCustomView = mInflater.inflate(R.layout.actionbar, null);
    actionBar.setCustomView(mCustomView,layout);
    actionBar.setDisplayShowCustomEnabled(true);
    actionBar.setDisplayShowHomeEnabled(false);
    actionBar.setDisplayShowTitleEnabled(false);
    actionBar.setDefaultDisplayHomeAsUpEnabled(false);
    actionBar.setDisplayUseLogoEnabled(false);
}

Any Solution to restore actionbar like previously using latest SDK? 恢复操作栏的任何解决方案都像以前使用最新的SDK一样

Update: I am able to remove arrow from actionbar by deleting ActionBarDrawerToggle from everywhere in my Drawerfragment. 更新:我可以通过从Drawerfragment中的任何位置删除ActionBarDrawerToggle来删除操作栏中的箭头。

在此输入图像描述

Now I am facing only styling issue of actionbar. 现在我只面对动作栏的样式问题。 Padding on left and background color of Actionabr 左侧填充和Actionabr的背景颜色

If you just want the color you should define it as primaryColor in your theme. 如果您只想要颜色,则应在主题中将其定义为primaryColor。 It looks like a lot of stuff you got there to simply put a hue on the ActionBar. 你看到很多东西只是在ActionBar上添加一个色调。

 <style name="Theme.MyTheme" parent="Theme.AppCompat">
    <item name="colorPrimary">@color/primary</item>
 </style>

 <color name="primary">#ff5722</color>

The arrow you are referring to is getSupportActionBar().setDisplayHomeAsUpEnabled(true|false); 你指的箭头是getSupportActionBar().setDisplayHomeAsUpEnabled(true|false); and you no longer need (should not) use your own drawer icon as it is included in appcompat v7. 并且您不再需要(不应该)使用自己的抽屉图标,因为它包含在appcompat v7中。 ( mDrawerToggle.setDrawerIndicatorEnabled(true); ) mDrawerToggle.setDrawerIndicatorEnabled(true);

This has been already solved in here Android Lollipop, AppCompat ActionBar custom view doesn't take up whole screen width . 这已经在这里解决了Android Lollipop,AppCompat ActionBar自定义视图不占用整个屏幕宽度

I tested the solution and works, though you'll have to style the toolbar again 我测试了解决方案并且工作正常,但您必须再次设置工具栏的样式

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM