android.os.Build common constants

When doing a project, it is often necessary to collect some equipment information, but it is not often used, so sometimes it will query which interface the requirements meet, so it will be sorted out at the weekend Build.ID; //Either a changelist number, or a label like "M4-rc20". Build.DISPLAY; //A build ID string m ...

Posted by jkrettek on Mon, 04 May 2020 21:33:27 -0700

Android immersive status bar - font color and background color modification implementation and compatibility

Immersive status bar research is to extend the layout content to the status bar, so that the status bar can be covered or hidden on the layout. Realization First of all, to modify the android version of the status bar at least above 4.4, and in 4.4, it is not allowed to make the status bar transparent, only to achieve a translucent shadow ...

Posted by ruddyu78 on Sat, 02 May 2020 20:52:59 -0700

Auto scroll screen capture like miui

Project address: android-notes/auto-scroll-capture Introduction: automatic scrolling screenshots like miui I wrote a blog a long time ago, which is totally different from other long screenshots, but it's very hasty. Now I'll rearrange it android long screenshot beta1 miui auto scroll long screenshot effect painting Nest a FrameLayout ...

Posted by Nukeum66 on Sat, 02 May 2020 11:18:26 -0700

Android running white list in the background, elegant for life

    Survival Status We know that there will be background killing on Android systems, and with the update of system versions, there will be an increasing trend in killing processes.The system's starting point is good because it saves memory, reduces power consumption, and avoids some rogue behav ...

Posted by zgkhoo on Sat, 18 Jan 2020 17:55:45 -0800

A Brief Analysis of the Common Storage Paths of Android Mobile Phones

Memory and External Memory: Early Android phones were divided into memory and external memory. Memory was provided by mobile phones, and external memory could be added. Nowadays, Android phones generally have only memory, no external memory. Running memory other memory: Memory can be divided into ...

Posted by mgelinas on Sun, 11 Aug 2019 23:55:19 -0700

There's nothing wrong with the clock.

If you don't say much, first put on the effect map. clock.gif When you think the first half screen is a ghost, it's actually a direction sensor. Place the phone on the desktop, lift the left edge of the phone, tilt the clock to the right, and then tilt the edges. As for the second half of the screen, rice noodles should know that it is the cl ...

Posted by Nathan__02 on Tue, 09 Jul 2019 12:55:48 -0700

Android Skip Application Permission Settings Page Adaptation Millet System

Skipping the application settings page to allow users to modify denied permissions is a common requirement, but testing on the MIUI 8 system has found pits. Write an article to record. Normal jump application setup page method Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); Uri uri = Uri.fromParts("package", activ ...

Posted by jimmyborofan on Sat, 22 Jun 2019 09:31:07 -0700