├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── apk └── app-release.apk ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── cn │ │ └── zsl │ │ └── androidbarutils │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── cn │ │ │ └── zsl │ │ │ └── androidbarutils │ │ │ ├── MainActivity.java │ │ │ └── utils │ │ │ └── AndroidBarUtils.java │ └── res │ │ ├── drawable-v21 │ │ ├── ic_menu_camera.xml │ │ ├── ic_menu_gallery.xml │ │ ├── ic_menu_manage.xml │ │ ├── ic_menu_send.xml │ │ ├── ic_menu_share.xml │ │ └── ic_menu_slideshow.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── side_nav_bar.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── app_bar_main.xml │ │ ├── content_main.xml │ │ └── nav_header_main.xml │ │ ├── menu │ │ ├── activity_main_drawer.xml │ │ └── main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_round.png │ │ └── ting.jpeg │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-v21 │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── drawables.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── cn │ └── zsl │ └── androidbarutils │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── Android 4.4.2.png ├── Android 5.0.2.png ├── Android 6.0.png ├── Android 9.0 动态.gif ├── Android 9.0.png ├── Android All.gif └── Android All.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/ 5 | .DS_Store 6 | /build 7 | /captures 8 | .externalNativeBuild 9 | app/release 10 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: android 2 | android: 3 | components: 4 | - platform-tools 5 | - tools 6 | - build-tools-28.0.1 7 | - android-28 8 | - extra-google-m2repository 9 | - extra-android-m2repository 10 | - extra-android-support 11 | 12 | script: ./gradlew assembleDebug -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AndroidBarUtils 2 | Android 透明(沉浸式)状态栏细研 3 | 4 | [![Build Status](https://travis-ci.org/yy1300326388/AndroidBarUtils.svg?branch=master)](https://travis-ci.org/yy1300326388/AndroidBarUtils) 5 | 6 | ## 实现的功能 7 | 8 | - 透明状态栏(非半透明状态栏,个别机型无法适配全透明) 9 | - 动态改变ToolBar或者自定义的TitleBar颜色,修改背景色即可,不需要动态改变状态栏颜色 10 | - 状态栏主题模式(黑白色)切换 11 | - 修复 DrawerLayout 在 4.4 上白边的问题 12 | - 适配“刘海屏”状态栏 13 | - 导航栏实现个人认为美观并通配的配色 14 | 15 | 系统 | 导航栏配色方案 16 | --- | --- 17 | 4.4 | 黑色 18 | 5.0~7.0 | 1/4透明黑底色+白色导航 19 | 8.0及以上| 白底+灰色导航主题 20 | 21 | ## 未来可能会去实现的功能 22 | 23 | - 动态改变导航栏颜色(5.0及以上可以自己修改实现,目前是写死的配色方案) 24 | - 状态栏和导航栏主题模式设置分离 25 | 26 | ## 预览效果(均为模拟器测试) 27 | 28 | - Android 9.0 gif 29 | 30 | ![Android 9.0 gif](https://github.com/yy1300326388/AndroidBarUtils/blob/master/images/Android%20All.gif) 31 | 32 | ![效果图](https://github.com/yy1300326388/AndroidBarUtils/blob/master/images/Android%20All.png) 33 | 34 | > 以上效果均为模拟器测试,如果你的真机测试有问题,请发给我并附上效果图和机型。 35 | 36 | ## 使用方式 37 | [查看 wiki](https://github.com/yy1300326388/AndroidBarUtils/wiki) 38 | 39 | ## 下载 APK 测试 40 | [AndroidBarUtils APK](apk/app-release.apk) 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /apk/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/apk/app-release.apk -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 28 5 | buildToolsVersion '28.0.1' 6 | defaultConfig { 7 | applicationId "cn.zsl.androidbarutils" 8 | minSdkVersion 14 9 | targetSdkVersion 28 10 | versionCode 2 11 | versionName "1.1.0" 12 | testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | implementation fileTree(include: ['*.jar'], dir: 'libs') 24 | implementation 'com.android.support:appcompat-v7:28.0.0-alpha3' 25 | implementation 'com.android.support:design:28.0.0-alpha3' 26 | implementation 'com.android.support.constraint:constraint-layout:1.1.2' 27 | testImplementation 'junit:junit:4.12' 28 | androidTestImplementation 'com.android.support.test:runner:1.0.2' 29 | androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' 30 | } 31 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /app/src/androidTest/java/cn/zsl/androidbarutils/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package cn.zsl.androidbarutils; 2 | 3 | import android.content.Context; 4 | import android.support.test.InstrumentationRegistry; 5 | import android.support.test.runner.AndroidJUnit4; 6 | 7 | import org.junit.Test; 8 | import org.junit.runner.RunWith; 9 | 10 | import static org.junit.Assert.*; 11 | 12 | /** 13 | * Instrumented test, which will execute on an Android device. 14 | * 15 | * @see Testing documentation 16 | */ 17 | @RunWith(AndroidJUnit4.class) 18 | public class ExampleInstrumentedTest { 19 | @Test 20 | public void useAppContext() { 21 | // Context of the app under test. 22 | Context appContext = InstrumentationRegistry.getTargetContext(); 23 | 24 | assertEquals("cn.zsl.androidbarutils", appContext.getPackageName()); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 12 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /app/src/main/java/cn/zsl/androidbarutils/MainActivity.java: -------------------------------------------------------------------------------- 1 | package cn.zsl.androidbarutils; 2 | 3 | import android.graphics.Color; 4 | import android.os.Bundle; 5 | import android.support.design.widget.FloatingActionButton; 6 | import android.support.design.widget.Snackbar; 7 | import android.support.v7.widget.AppCompatSeekBar; 8 | import android.support.v7.widget.SwitchCompat; 9 | import android.view.View; 10 | import android.support.design.widget.NavigationView; 11 | import android.support.v4.view.GravityCompat; 12 | import android.support.v4.widget.DrawerLayout; 13 | import android.support.v7.app.ActionBarDrawerToggle; 14 | import android.support.v7.app.AppCompatActivity; 15 | import android.support.v7.widget.Toolbar; 16 | import android.view.Menu; 17 | import android.view.MenuItem; 18 | import android.widget.CompoundButton; 19 | import android.widget.SeekBar; 20 | 21 | import cn.zsl.androidbarutils.utils.AndroidBarUtils; 22 | 23 | public class MainActivity extends AppCompatActivity 24 | implements NavigationView.OnNavigationItemSelectedListener { 25 | 26 | private SwitchCompat switchCompat; 27 | private Toolbar toolbar; 28 | private FloatingActionButton fab; 29 | private DrawerLayout drawerLayout; 30 | private NavigationView navigationView; 31 | private AppCompatSeekBar sb_alpha, sb_red, sb_green, sb_blue; 32 | private int alpha = 255, red = 63, green = 81, blue = 181; 33 | 34 | @Override 35 | protected void onCreate(Bundle savedInstanceState) { 36 | super.onCreate(savedInstanceState); 37 | setContentView(R.layout.activity_main); 38 | //设置透明状态栏 39 | AndroidBarUtils.setTranslucent(this); 40 | //设置StatusBar 显示模式(黑色或者白色) 41 | AndroidBarUtils.setBarDarkMode(this, false); 42 | initToolBar(); 43 | initView(); 44 | initEvent(); 45 | } 46 | 47 | private void initToolBar() { 48 | toolbar = (Toolbar) findViewById(R.id.toolbar); 49 | setSupportActionBar(toolbar); 50 | //设置填充间距 51 | AndroidBarUtils.setBarPaddingTop(this, toolbar); 52 | //设置ToolBar 颜色 53 | setToolBarBackgroundColor(alpha, red, green, blue); 54 | } 55 | 56 | private void initView() { 57 | drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); 58 | ActionBarDrawerToggle toggle = new ActionBarDrawerToggle( 59 | this, drawerLayout, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close); 60 | drawerLayout.addDrawerListener(toggle); 61 | toggle.syncState(); 62 | //修复DrawerLayout 在4.4 下出现白条的问题 63 | // AndroidBarUtils.setTranslucentDrawerLayout(drawerLayout); 64 | 65 | navigationView = (NavigationView) findViewById(R.id.nav_view); 66 | navigationView.setNavigationItemSelectedListener(this); 67 | //适配NavigationView 刘海屏 68 | AndroidBarUtils.setBarPaddingTop(this, navigationView.getHeaderView(0)); 69 | 70 | fab = (FloatingActionButton) findViewById(R.id.fab); 71 | switchCompat = (SwitchCompat) findViewById(R.id.main_sc_mode); 72 | sb_alpha = (AppCompatSeekBar) findViewById(R.id.main_sb_alpha); 73 | sb_red = (AppCompatSeekBar) findViewById(R.id.main_sb_red); 74 | sb_green = (AppCompatSeekBar) findViewById(R.id.main_sb_green); 75 | sb_blue = (AppCompatSeekBar) findViewById(R.id.main_sb_blue); 76 | sb_alpha.setProgress(alpha); 77 | sb_red.setProgress(red); 78 | sb_green.setProgress(green); 79 | sb_blue.setProgress(blue); 80 | } 81 | 82 | private void initEvent() { 83 | fab.setOnClickListener(new View.OnClickListener() { 84 | @Override 85 | public void onClick(View view) { 86 | Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) 87 | .setAction("Action", null).show(); 88 | } 89 | }); 90 | 91 | switchCompat.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { 92 | @Override 93 | public void onCheckedChanged(CompoundButton compoundButton, boolean isChecked) { 94 | if (isChecked) { 95 | AndroidBarUtils.setBarDarkMode(MainActivity.this, true); 96 | } else { 97 | AndroidBarUtils.setBarDarkMode(MainActivity.this, false); 98 | } 99 | } 100 | }); 101 | 102 | sb_alpha.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 103 | @Override 104 | public void onProgressChanged(SeekBar seekBar, int i, boolean b) { 105 | setToolBarBackgroundColor(i, red, green, blue); 106 | } 107 | 108 | @Override 109 | public void onStartTrackingTouch(SeekBar seekBar) { 110 | 111 | } 112 | 113 | @Override 114 | public void onStopTrackingTouch(SeekBar seekBar) { 115 | 116 | } 117 | }); 118 | 119 | sb_red.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 120 | @Override 121 | public void onProgressChanged(SeekBar seekBar, int i, boolean b) { 122 | setToolBarBackgroundColor(alpha, i, green, blue); 123 | } 124 | 125 | @Override 126 | public void onStartTrackingTouch(SeekBar seekBar) { 127 | 128 | } 129 | 130 | @Override 131 | public void onStopTrackingTouch(SeekBar seekBar) { 132 | 133 | } 134 | }); 135 | 136 | sb_green.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 137 | @Override 138 | public void onProgressChanged(SeekBar seekBar, int i, boolean b) { 139 | setToolBarBackgroundColor(alpha, red, i, blue); 140 | } 141 | 142 | @Override 143 | public void onStartTrackingTouch(SeekBar seekBar) { 144 | 145 | } 146 | 147 | @Override 148 | public void onStopTrackingTouch(SeekBar seekBar) { 149 | 150 | } 151 | }); 152 | 153 | sb_blue.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() { 154 | @Override 155 | public void onProgressChanged(SeekBar seekBar, int i, boolean b) { 156 | setToolBarBackgroundColor(alpha, red, green, i); 157 | } 158 | 159 | @Override 160 | public void onStartTrackingTouch(SeekBar seekBar) { 161 | 162 | } 163 | 164 | @Override 165 | public void onStopTrackingTouch(SeekBar seekBar) { 166 | 167 | } 168 | }); 169 | 170 | } 171 | 172 | /** 173 | * 设置ToolBar 背景色 174 | * 175 | * @param alpha 透明度 176 | * @param red 红色 177 | * @param green 绿色 178 | * @param blue 蓝色 179 | */ 180 | private void setToolBarBackgroundColor(int alpha, int red, int green, int blue) { 181 | this.alpha = alpha; 182 | this.red = red; 183 | this.green = green; 184 | this.blue = blue; 185 | toolbar.setBackgroundColor(Color.argb(alpha, red, green, blue)); 186 | } 187 | 188 | @Override 189 | public void onBackPressed() { 190 | DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 191 | if (drawer.isDrawerOpen(GravityCompat.START)) { 192 | drawer.closeDrawer(GravityCompat.START); 193 | } else { 194 | super.onBackPressed(); 195 | } 196 | } 197 | 198 | @Override 199 | public boolean onCreateOptionsMenu(Menu menu) { 200 | // Inflate the menu; this adds items to the action bar if it is present. 201 | getMenuInflater().inflate(R.menu.main, menu); 202 | return true; 203 | } 204 | 205 | @Override 206 | public boolean onOptionsItemSelected(MenuItem item) { 207 | // Handle action bar item clicks here. The action bar will 208 | // automatically handle clicks on the Home/Up button, so long 209 | // as you specify a parent activity in AndroidManifest.xml. 210 | int id = item.getItemId(); 211 | 212 | //noinspection SimplifiableIfStatement 213 | if (id == R.id.action_settings) { 214 | return true; 215 | } 216 | 217 | return super.onOptionsItemSelected(item); 218 | } 219 | 220 | @SuppressWarnings("StatementWithEmptyBody") 221 | @Override 222 | public boolean onNavigationItemSelected(MenuItem item) { 223 | // Handle navigation view item clicks here. 224 | int id = item.getItemId(); 225 | 226 | if (id == R.id.nav_camera) { 227 | // Handle the camera action 228 | } else if (id == R.id.nav_gallery) { 229 | 230 | } else if (id == R.id.nav_slideshow) { 231 | 232 | } else if (id == R.id.nav_manage) { 233 | 234 | } else if (id == R.id.nav_share) { 235 | 236 | } else if (id == R.id.nav_send) { 237 | 238 | } 239 | 240 | DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 241 | drawer.closeDrawer(GravityCompat.START); 242 | return true; 243 | } 244 | } 245 | -------------------------------------------------------------------------------- /app/src/main/java/cn/zsl/androidbarutils/utils/AndroidBarUtils.java: -------------------------------------------------------------------------------- 1 | package cn.zsl.androidbarutils.utils; 2 | 3 | import android.annotation.TargetApi; 4 | import android.app.Activity; 5 | import android.content.Context; 6 | import android.content.res.Configuration; 7 | import android.graphics.Color; 8 | import android.os.Build; 9 | import android.support.v4.widget.DrawerLayout; 10 | import android.util.DisplayMetrics; 11 | import android.util.Log; 12 | import android.view.Display; 13 | import android.view.Gravity; 14 | import android.view.View; 15 | import android.view.ViewGroup; 16 | import android.view.Window; 17 | import android.view.WindowManager; 18 | import android.widget.FrameLayout; 19 | 20 | import java.lang.reflect.Field; 21 | 22 | /** 23 | * @author zsl 24 | * @date 2018/6/13 25 | * @description StatusBar 和 NavigationBar 的工具类 26 | */ 27 | public class AndroidBarUtils { 28 | 29 | private static final String STATUS_BAR_HEIGHT_RES_NAME = "status_bar_height"; 30 | private static final String NAV_BAR_HEIGHT_RES_NAME = "navigation_bar_height"; 31 | private static final String NAV_BAR_WIDTH_RES_NAME = "navigation_bar_width"; 32 | 33 | /** 34 | * 设置透明StatusBar,默认文字为白色 35 | * 36 | * @param activity Activity 37 | */ 38 | public static void setTranslucent(Activity activity) { 39 | setTranslucentStatusBar(activity); 40 | } 41 | 42 | /** 43 | * 设置 DrawerLayout 在4.4版本下透明,不然会出现白边 44 | * 45 | * @param drawerLayout DrawerLayout 46 | */ 47 | public static void setTranslucentDrawerLayout(DrawerLayout drawerLayout) { 48 | if (drawerLayout != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) { 49 | drawerLayout.setFitsSystemWindows(true); 50 | drawerLayout.setClipToPadding(false); 51 | } 52 | } 53 | 54 | /** 55 | * 设置透明StatusBar 56 | * 57 | * @param activity Activity 58 | */ 59 | private static void setTranslucentStatusBar(Activity activity) { 60 | if (Build.VERSION.SDK_INT < Build.VERSION_CODES.KITKAT) { 61 | return; 62 | } 63 | Window window = activity.getWindow(); 64 | //透明状态栏 65 | window.setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); 66 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { 67 | //5.0及以上版本 68 | createNavBar(activity); 69 | } else { 70 | //4.4版本 71 | window.addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS); 72 | } 73 | } 74 | 75 | /** 76 | * Android 6.0使用原始的主题适配 77 | * 78 | * @param activity Activity 79 | * @param darkMode 是否是黑色模式 80 | */ 81 | public static void setBarDarkMode(Activity activity, boolean darkMode) { 82 | Window window = activity.getWindow(); 83 | if (window == null) { 84 | return; 85 | } 86 | //设置StatusBar模式 87 | if (darkMode) {//黑色模式 88 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { 89 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {//设置statusBar和navigationBar为黑色 90 | window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR | View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); 91 | } else {//设置statusBar为黑色 92 | window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR); 93 | } 94 | } 95 | } else {//白色模式 96 | int statusBarFlag = View.SYSTEM_UI_FLAG_VISIBLE; 97 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { 98 | statusBarFlag = window.getDecorView().getSystemUiVisibility() 99 | & ~View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR; 100 | } 101 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {//设置statusBar为白色,navigationBar为灰色 102 | // int navBarFlag = window.getDecorView().getSystemUiVisibility() 103 | // & ~View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR;//如果想让navigationBar为白色,那么就使用这个代码。 104 | int navBarFlag = View.SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR; 105 | window.getDecorView().setSystemUiVisibility(navBarFlag | statusBarFlag); 106 | } else { 107 | window.getDecorView().setSystemUiVisibility(statusBarFlag); 108 | } 109 | } 110 | setHuaWeiStatusBar(darkMode, window); 111 | } 112 | 113 | /** 114 | * 设置华为手机 StatusBar 115 | * 116 | * @param darkMode 是否是黑色模式 117 | * @param window window 118 | */ 119 | private static void setHuaWeiStatusBar(boolean darkMode, Window window) { 120 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { 121 | try { 122 | Class decorViewClazz = Class.forName("com.android.internal.policy.DecorView"); 123 | Field field = decorViewClazz.getDeclaredField("mSemiTransparentStatusBarColor"); 124 | field.setAccessible(darkMode); 125 | field.setInt(window.getDecorView(), Color.TRANSPARENT); //改为透明 126 | } catch (ClassNotFoundException e) { 127 | Log.e("setHuaWeiStatusBar", "HuaWei status bar 模式设置失败"); 128 | } catch (IllegalAccessException e) { 129 | Log.e("setHuaWeiStatusBar", "HuaWei status bar 模式设置失败"); 130 | } catch (NoSuchFieldException e) { 131 | Log.e("setHuaWeiStatusBar", "HuaWei status bar 模式设置失败"); 132 | } 133 | } 134 | } 135 | 136 | /** 137 | * 获取状态栏高度 138 | * 139 | * @param context context 140 | * @return 状态栏高度 141 | */ 142 | private static int getStatusBarHeight(Activity context) { 143 | // 获得状态栏高度 144 | return getBarHeight(context, STATUS_BAR_HEIGHT_RES_NAME); 145 | } 146 | 147 | /** 148 | * 获取导航栏高度 149 | * 150 | * @param activity activity 151 | * @return 导航栏高度 152 | */ 153 | private static int getNavigationBarHeight(Activity activity) { 154 | if (hasNavBar(activity)) { 155 | // 获得导航栏高度 156 | return getBarHeight(activity, NAV_BAR_HEIGHT_RES_NAME); 157 | } else { 158 | return 0; 159 | } 160 | } 161 | 162 | /** 163 | * 获取横屏状态下导航栏的宽度 164 | * 165 | * @param activity activity 166 | * @return 导航栏的宽度 167 | */ 168 | private static int getNavigationBarWidth(Activity activity) { 169 | if (hasNavBar(activity)) { 170 | // 获得导航栏高度 171 | return getBarHeight(activity, NAV_BAR_WIDTH_RES_NAME); 172 | } else { 173 | return 0; 174 | } 175 | } 176 | 177 | /** 178 | * 获取Bar高度 179 | * 180 | * @param context context 181 | * @param barName 名称 182 | * @return Bar高度 183 | */ 184 | private static int getBarHeight(Context context, String barName) { 185 | // 获得状态栏高度 186 | int resourceId = context.getResources().getIdentifier(barName, "dimen", "android"); 187 | return context.getResources().getDimensionPixelSize(resourceId); 188 | } 189 | 190 | /** 191 | * 是否有NavigationBar 192 | * 193 | * @param activity 上下文 194 | * @return 是否有NavigationBar 195 | */ 196 | private static boolean hasNavBar(Activity activity) { 197 | WindowManager windowManager = activity.getWindowManager(); 198 | Display d = windowManager.getDefaultDisplay(); 199 | 200 | DisplayMetrics realDisplayMetrics = new DisplayMetrics(); 201 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { 202 | d.getRealMetrics(realDisplayMetrics); 203 | } 204 | 205 | int realHeight = realDisplayMetrics.heightPixels; 206 | int realWidth = realDisplayMetrics.widthPixels; 207 | 208 | DisplayMetrics displayMetrics = new DisplayMetrics(); 209 | d.getMetrics(displayMetrics); 210 | 211 | int displayHeight = displayMetrics.heightPixels; 212 | int displayWidth = displayMetrics.widthPixels; 213 | 214 | return (realWidth - displayWidth) > 0 || (realHeight - displayHeight) > 0; 215 | } 216 | 217 | /** 218 | * 设置BarPaddingTop 219 | * 220 | * @param context Activity 221 | * @param view View[ToolBar、TitleBar、navigationView.getHeaderView(0)] 222 | */ 223 | public static void setBarPaddingTop(Activity context, View view) { 224 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { 225 | int paddingStart = view.getPaddingStart(); 226 | int paddingEnd = view.getPaddingEnd(); 227 | int paddingBottom = view.getPaddingBottom(); 228 | int statusBarHeight = getStatusBarHeight(context); 229 | //改变titleBar的高度 230 | ViewGroup.LayoutParams lp = view.getLayoutParams(); 231 | lp.height += statusBarHeight; 232 | view.setLayoutParams(lp); 233 | //设置paddingTop 234 | view.setPaddingRelative(paddingStart, statusBarHeight, paddingEnd, paddingBottom); 235 | } 236 | } 237 | 238 | /** 239 | * 创建Navigation Bar 240 | * 241 | * @param activity 上下文 242 | */ 243 | @TargetApi(Build.VERSION_CODES.LOLLIPOP) 244 | private static void createNavBar(Activity activity) { 245 | int navBarHeight = getNavigationBarHeight(activity); 246 | int navBarWidth = getNavigationBarWidth(activity); 247 | if (navBarHeight > 0 && navBarWidth > 0) { 248 | //创建NavigationBar 249 | View navBar = new View(activity); 250 | FrameLayout.LayoutParams pl; 251 | if (activity.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) { 252 | pl = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, navBarHeight); 253 | pl.gravity = Gravity.BOTTOM; 254 | } else { 255 | pl = new FrameLayout.LayoutParams(navBarWidth, ViewGroup.LayoutParams.MATCH_PARENT); 256 | pl.gravity = Gravity.END; 257 | } 258 | navBar.setLayoutParams(pl); 259 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 260 | navBar.setBackgroundColor(Color.parseColor("#fffafafa")); 261 | } else { 262 | navBar.setBackgroundColor(Color.parseColor("#40000000")); 263 | } 264 | //添加到布局当中 265 | ViewGroup decorView = (ViewGroup) activity.getWindow().getDecorView(); 266 | decorView.addView(navBar); 267 | //设置主布局PaddingBottom 268 | ViewGroup contentView = decorView.findViewById(android.R.id.content); 269 | if (activity.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) { 270 | contentView.setPaddingRelative(0, 0, 0, navBarHeight); 271 | } else { 272 | contentView.setPaddingRelative(0, 0, navBarWidth, 0); 273 | } 274 | 275 | } 276 | } 277 | } 278 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 13 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 12 | 13 | 19 | 22 | 25 | 26 | 27 | 28 | 34 | 35 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 15 | 20 | 25 | 30 | 35 | 40 | 45 | 50 | 55 | 60 | 65 | 70 | 75 | 80 | 85 | 90 | 95 | 100 | 105 | 110 | 115 | 120 | 125 | 130 | 135 | 140 | 145 | 150 | 155 | 160 | 165 | 170 | 171 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 15 | 16 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /app/src/main/res/layout/app_bar_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 18 | 19 | 24 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 43 | 44 | -------------------------------------------------------------------------------- /app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 22 | 23 | 32 | 33 | 42 | 43 | 52 | 53 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /app/src/main/res/layout/nav_header_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 22 | 23 | 29 | 30 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /app/src/main/res/menu/activity_main_drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 11 | 15 | 19 | 23 | 24 | 25 | 26 | 27 | 31 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ting.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-xxhdpi/ting.jpeg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BytesZero/AndroidBarUtils/f02fcb144e386d904605eaf0c6ccfdfbd3d465a1/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #20303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 8dp 6 | 176dp 7 | 16dp 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- 1 | 2 | @android:drawable/ic_menu_camera 3 | @android:drawable/ic_menu_gallery 4 | @android:drawable/ic_menu_slideshow 5 | @android:drawable/ic_menu_manage 6 | @android:drawable/ic_menu_share 7 | @android:drawable/ic_menu_send 8 | 9 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidBarUtils 3 | Open navigation drawer 4 | Close navigation drawer 5 | Android Studio 6 | android.studio@android.com 7 | Navigation header 8 | Settings 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 15 | 16 |