删除操作栏和Android的主屏幕之间的线路或分 [英] Removing line or divider between action bar and main screen in Android

查看:107
本文介绍了删除操作栏和Android的主屏幕之间的线路或分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何删除操作栏和主屏幕之间的线路或除法? 我怎样才能改变这种分在了Android的颜色? 先谢谢了。

How can I remove line or divider between action bar and main screen? How can I change the color of this divider in android? Thanks in advance.

推荐答案

经过努力,我能找到我理想中的主题。

After more effort I can find my ideal Theme.

  1. 首先,我必须说,Theme.Holo.Light有阴影的操作栏中的底部,如果你想有没有,你必须使用Theme.Holo阴影。
  2. 在改变风格,你必须改变,如code等设置,为你自己。

  1. First of all i must say that Theme.Holo.Light has a shadow in bottom of action bar if you want to have not that shadow you must use Theme.Holo.
  2. After you change the style you must change other settings for yourself like the code.

<resources>
    <style name="AppTheme" parent="android:Theme.Holo">
        <item name="android:actionBarStyle">@style/AppTheme.ActionBar</item>
        <item name="android:background">#ff0000</item>
        <item name="android:colorBackground">#ff0000</item>
    </style>
    <style name="AppTheme.ActionBar" parent="android:Widget.ActionBar">
        <item name="android:background">#ff0000</item>
    </style>
</resources>

  • 这低于code是我的,我发现如何解决最后challange。

  • This below code is for my last challange that I found how to resolve it.

    <resources>
        <style name="AppTheme" parent="android:Theme.Holo.Light">
            <item name="android:actionBarStyle">@style/AppTheme.ActionBar</item>
            <item name="android:background">#ff0000</item>
            <item name="android:colorBackground">#ff0000</item>
        </style>
        <style name="AppTheme.ActionBar" parent="android:Widget.ActionBar">
            <item name="android:background">#ff0000</item>
        </style>
    </resources>
    

  • 下面图片是第一次code,如果你发现没有任何分隔。

  • Below Image is for first Code, If you notice there isn't any divider.

    1. 而下面的图片是第二code。

    这篇关于删除操作栏和Android的主屏幕之间的线路或分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

  • 查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆