In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-25 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)05/31 Report--
This article mainly introduces the relevant knowledge of "how to achieve fully transparent status bar in Android". The editor shows you the operation process through an actual case. The method of operation is simple and fast, and it is practical. I hope this article "how to achieve fully transparent status bar in Android" can help you solve the problem.
To achieve the immersive status bar above Android4.4, you can set it in the style file.
False true true
You can get a transparent status bar. Comparing the interface of NetEase Cloud Music, you will find that the status bar of NetEyun is fully transparent, while the background of the status bar obtained by setting windowTranslucentStatus is always translucent. So the status bar color will be a little darker than the toolbar color (Material Design)
The status bar is a little darker.
The status bar and toolbar are the same color.
In order to achieve the same effect, I searched a lot of methods and found a piece of code that was more appropriate. Use the following code. Then add the paddingtop attribute to the layout file and set it to 25dp. Note that the fitSystemWindows attribute does not need to be set in the layout file. After the setting, the interface effect of NetEase Yun music is realized.
If (Build.VERSION.SDK_INT > = Build.VERSION_CODES.LOLLIPOP) {Window window = getWindow (); window.clearFlags (WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS | WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION); window.getDecorView () .setSystemUiVisibility (View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE); window.addFlags (WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS); window.setStatusBarColor (Color.TRANSPARENT) } this is the end of the introduction to "how to achieve a fully transparent status bar in Android". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.