本文主要是介绍android4.4+实现MD状态栏并全屏显示内容,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
material design如此之美,美到令人窒息~~(●'◡'●)
今天实现android4.4以上版本符合MD规范的状态栏,并可以全屏显示内容(即内容可以扩展到状态栏下)。
效果图:
android4.4:
android6.0:
好了,效果如上图所示,完美符合MD规范~~
实现其实很简单:
1,首先new module
compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig {applicationId "com.science.statusbartest" minSdkVersion 19 targetSdkVersion 23 versionCode 1 versionName "1.0" }
dependencies {compile fileTree(dir: 'libs', include: ['*.jar'])testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' }
主题如下:
values\style.xml:
<这篇关于android4.4+实现MD状态栏并全屏显示内容的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!