Tag:status bar
-
Oeasy teaches you to play VIM – 22 – configuration file
Time:2022-5-3configuration file Recall the last lesson We learned about the status bar last time Expressed by escapeitem controlitemWidth method takeitemGroup approach There is also a main switchlaststatus But it’s troublesome to write a long paragraph to configure every time Can we write a configuration file so thatvimHow about automatic configuration every time? configuration file #First, […]
-
Android imitation IOS animation switch button, pop-up box, prompt and status bar simple summary
Time:2022-4-30Today, I came across an open source project on GitHub, which is an IOS style switch button that provides animation and color customization effects. I hope it can help students with such needs! In addition, the Android pop-up tips tips and related settings in the status bar that I summarized here today are also posted […]
-
IOS development determines whether it is banged screen and network status
Time:2022-2-12To judge whether it is a banged screen, we should not only judge the situation on the iPhone, but also judge the situation on the iPad. The iPad has changed the status bar on IOS 12 to become a time out of center type. This category also belongs to Liu Haiping.When the iPad interface is […]
-
Android qmui actual combat: immersive / adaptation status bar
Time:2022-2-3Recently, I studied the implementation of qmui skinning, and analyzed the immersion of qmui.There are many articles about qmui page immersion on the Internet. In short: it’s complicated. In this issue, we can perfectly realize the page immersion effect through only a few lines of code, and easily match the color of skin change. 1. […]
-
Imitate the banner rotation of the home page of a reading app + background gradient
Time:2022-1-30PS: I found an interesting effect recently, so I want to operate it myself. The renderings are as follows: Banner rotation + background gradient The effect achieved by the author: Banner rotation + background gradient 1. Implementation ideas Use banner + transparent ImageView for matching. Use the palette to take the color of each bitmap […]
-
IOS design specification
Time:2022-1-7640 x 1136px(iphone SE) Status bar: 40px; navigation bar: 88px; label bar: 98px 750 x 1334px(iphone6s/7/8) Status bar: 40px; navigation bar: 88px; label bar: 98px 1242 x 2208px(iphone6s/7/8Plus) Status bar: 60px; navigation bar: 132px; label bar: 147px 1125 x 2436px(iphone X (@3x)) Status bar: 132px; navigation bar: 132px; label bar: 147px 750 x 1624px(iphone X […]
-
[share] IOS development – solution when tableview moves up as a whole
Time:2021-12-30Scheme IAfter using the navigationcontroller, when the interface jumps back and forth, the tableview sometimes moves up, usually 64 pixels. In this case, we can turn off the automatic adaptation layout of tableview. self.automaticallyAdjustsScrollViewInsets = NO; Scheme II:When the tableview moves up as a whole, of course, you can modify each view in Xcode and […]
-
Let bash, VIM Meimei’s powerline
Time:2021-12-29preface Given that Bash and its surrounding powerful tools and VIM are efficient and fast, and now my focus has shifted to front-end development, I gorgeous turn to the Linux camp (of course, start with the most stupid Ubuntu!). However, Bash and VIM default styles do have too low face value. Powerful functions are important, […]
-
Writing the DWM status bar application using trust
Time:2021-12-6Brief introduction to DWM DWM is a window manager written in C language under Linux system. The characteristic of DWM is small. The core code is only a few thousand lines, and the compiled executable file is only a few dozen KB. DWM does not support configuration files. Every time DWM is modified, such as […]
-
[fluent 3-1] advanced tutorial of fluent – bottom navigation bar
Time:2021-11-19By VladSource Vlad (official account: fulade_me) BottomNavigationBar BottomNavigationBarandBottomNavigationBarItemCooperate to jointly display the bottom status bar in the shuttle. The bottom status bar is a very important control at the mobile end. Have a look firstBottomNavigationBarConstruction method BottomNavigationBar({ // key Key key, ///Bottomnavigationbaritem array @required this.items, ///Click event method this.onTap, ///Currently selected element subscript this.currentIndex = […]
-
Layman hbuilder cloud packaging generates app
Time:2021-10-5stay In the hbuilder cloud packaging function, the. APK file is generated. Although the platform provides free Android certificates, if there are other requirements, such as publishing, you need to apply for various types of certificates. Here is how to generate certificates online and configure them to the packaging platform for publishing. I […]
-
Win32 sets the current window – SetForegroundWindow, setactivewindow, or ShowWindow?
Time:2021-9-11Win32 has many functions and is relatively low-level, so the names are not easy to understand. For example, these three functions:SetForegroundWindow,SetActiveWindow, andShowWindow, who can turn the specified window into the current window? The first thing to clarify is: SetActiveWindowno way It is not designed to do this – although there is window in the name, […]