内容简介:你也许听过谷歌最新的设计理念 Material Design (“质感设计”)规范,可以让你的抽屉式导航栏跨越整个屏幕,包括状态栏,并且让抽屉后的所有控件以灰暗的网格形式可见。然而,许多应用打开抽屉式导航栏时看来是这样的这里将示范如何把这些元素改造成上面说到的规范。
你也许听过谷歌最新的设计理念 Material Design (“质感设计”)规范,可以让你的抽屉式导航栏跨越整个屏幕,包括状态栏,并且让抽屉后的所有控件以灰暗的网格形式可见。
然而,许多应用打开抽屉式导航栏时看来是这样的
这里将示范如何把这些元素改造成上面说到的规范。
扩展你的主题
你可能已经给包含抽屉的 Activity 定义了一个样式。
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> 复制代码
第一步,创建一个扩展自 AppTheme
的新 Theme
vaules/styles.xml
<style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> </style> 复制代码
v21/styles.xml
<style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="android:windowDrawsSystemBarBackgrounds">true</item> <item name="android:statusBarColor">@android:color/transparent</item> </style> 复制代码
并且确保你的 Activity 指定使用了这个 theme,比如
<activity android:name="MyDrawerNavActivity" android:theme="@style/AppTheme.NoActionBar" 复制代码
配置 DrawerLayout 控件
第二步,到你定义 DrawerLayout
控件的地方,设置 insetForegroundColor
(如果你不想控制 ScrimInsetLayout
的颜色,你也可以不设置)。并设置好 fitsSystemWindow
属性值
<android.support.v4.widget.DrawerLayout ... android:fitsSystemWindows="true" app:insetForeground="@color/inset_color" > 复制代码
看起来这样
当然,如果一会你想在代码里改变状态栏的颜色或 ScrimInsetLayout
的颜色,你可以在 DrawerLayout
中通过setters方法来获取并改变。
drawerLayout.setStatusBarBackgroundColor(ContextCompat.getColor(this, R.color.wierd_green)); drawerLayout.setScrimColor(ContextCompat.getColor(this, R.color.wierd_transparent_orange)); 复制代码
感谢你的阅读,如果在我分享的内容里,你有更好的方法来实现,那么在评论里更正,感激不尽。
* 以下添加于 6月5, 2016*
如果你继承 DrawerLayout
Android Support 兼容包(AppCompat) 会在 DrawerLayout
里加入一个 android.support.design.internal.ScrimInsetsFrameLayout
, 但如果你使用继承自 DrawerLayout 的自定义控件则不会这么做。
如果你继承了 DrawerLayout
但是没有加入 ScrimInsetsFrameLayout
,你需要这么做:
activity_with_drawer_layout.xml
<com.myproject.views.MyDrawerLayout android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true"> <FrameLayout android:id="@+id/content_frame" android:layout_width="match_parent" android:layout_height="match_parent"/> <fragment android:id="@+id/left_drawer" android:name="com.myproject.fragments.NavigationFragment" android:layout_width="wrap_content" android:layout_height="match_parent" /> </com.myproject.views.MyDrawerLayout> 复制代码
在你的抽屉布局文件中加入一个 ScrimInsetsFrameLayout
,如:
navigation_fragment_layout.xml
<?xml version="1.0" encoding="utf-8"?> <android.support.design.internal.ScrimInsetsFrameLayout ... android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/transparent" android:fitsSystemWindows="true" > <!--- content of drawer here ---> </android.support.design.internal.ScrimInsetsFrameLayout>复制代码
以上所述就是小编给大家介绍的《[译] 5 分钟让 Drawer 在状态栏下可见》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 关于绝对定位和overflow的可见与不可见
- Android可见APP的不可见任务栈(TaskRecord)销毁分析
- Flutter 设置控件是否可见
- Flutter 设置控件是否可见
- 游戏中的 2D 可见性
- 随处可见的公钥证书
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Art of Computer Programming, Volumes 1-3 Boxed Set
Donald E. Knuth / Addison-Wesley Professional / 1998-10-15 / USD 199.99
This multivolume work is widely recognized as the definitive description of classical computer science. The first three volumes have for decades been an invaluable resource in programming theory and p......一起来看看 《The Art of Computer Programming, Volumes 1-3 Boxed Set》 这本书的介绍吧!