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:
<