zoukankan      html  css  js  c++  java
  • AppCompat Toolbar控件去掉阴影设置高度

    For Android 5.0, if you want to set it directly into a style use:

    <item name="android:elevation">0dp</item>
    and for Support library compatibility use:

    <item name="elevation">0dp</item>
    Example of style for a AppCompat light theme:

    <style name="Theme.MyApp.ActionBar" parent="style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
    <!-- remove shadow below action bar -->
    <!-- <item name="android:elevation">0dp</item> -->
    <!-- Support library compatibility -->
    <item name="elevation">0dp</item>
    </style>
    Then apply this custom ActionBar style to you app theme:

    <style name="Theme.MyApp" parent="Theme.AppCompat.Light">
    <item name="actionBarStyle">@style/Theme.MyApp.ActionBar</item>
      <item name="actionBarSize">@dimen/actionbar_size</item>

    </style>
    For pre 5.0 Android, add this too to your app theme:

    <!-- Remove shadow below action bar Android < 5.0 -->
    <item name="android:windowContentOverlay">@null</item>

    或者
    <android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:elevation="0dp"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
        </android.support.v7.widget.Toolbar>
     </android.support.design.widget.AppBarLayout>
    

      

  • 相关阅读:
    使用递归,计算斐波那契数列
    Javascript模块化编程 require.js使用详解
    逻辑很重要:一句sql语句的事,自己却想了半天,绕了个大弯子
    select options常用操作
    select 下拉菜单Option对象使用add(elements,index)方法动态添加
    $().change事件
    jQuery验证控件jquery.validate.js使用说明
    copy(source,destination)拷贝文件
    Linux常用命令
    纯js实现分页
  • 原文地址:https://www.cnblogs.com/jiezzy/p/5070391.html
Copyright © 2011-2022 走看看