Modify the software name in the launcher on Tongxin desktop operating system 1060

Original link: Modify the software name in the launcher on Tongxin UOS1060 Hello, everyone, today I bring you an article about changing the name of the software in the launcher on the Unison desktop operating system 1060, so that we can modify the frequently used software to display personalized names. Welcome everyone to browse share. […]

Equipped with Android5.1 based on RK3229 to modify the default desktop Launcher at startup

1. Find ActivityManagerService.java Find the ActivityManagerService.java file in the ..\rk3229_5.1_box\frameworks\base\services\core\java\com\android\server\am directory. Find setDefaultLauncher in the startHomeActivityLocked function in the file. boolean startHomeActivityLocked(int userId, String reason) { setDefaultLauncher(userId); if (mFactoryTest == FactoryTest.FACTORY_TEST_LOW_LEVEL & amp; & amp; mTopAction == null) { // We are running in factory test mode, but unable to find // the factory test […]

Android system startup animation ends and black screen optimization occurs before entering the launcher

Optimization of black screen before entering launcher after Android system startup animation Foreword I was working on a project recently and found that after the system startup animation ends, there will be a 6S black screen before entering the launcher interface, which seriously affects the user experience. Luancher 1. The first thing I thought of […]

Launcher3-Four ways to customize Workspace

There are four ways to load layout resources in Launcher’s workspace. The loading entrance is in LauncherProvider.java. Understanding these four loading methods will be very helpful for us to develop launcher, customize workspace, and share direct resources between two applications. Create a ContentProvider when the launcher starts, and then call the call method packages\apps\Launcher3\src\com\android\launcher3\LauncherProvider.java public […]

Android Launcher and SystemUI startup

1. Prerequisite summary Launcher, the desktop program, is the first application process opened after system services are started. It mainly manages the display and opening of various user apps inside the phone. During the process of opening Launcher, SystemUI such as navigation bar and other layouts are also loaded one after another. to the screen. […]

Launcher3 custom desktop application [Android13 version]

Article directory summary Change default layout Dynamically add apps to the home screen in code summary Summary Launcher3 project address: AOSP source code/packages/apps/Launcher3 Launcher3 customizes desktop applications. I currently have two methods in practice: Change the default layout file and specify which apps to add to the home screen Dynamically add apps to the home […]

Android system Modifies ordinary applications without source code to default Launcher and hides the application information icon in Settings

In Android system customization development, sometimes we need to implement some special functions, such as changing the application to the default launcher, or hiding the application icon so that users cannot directly launch or uninstall the application. These functions may be used in some customized scenarios, such as smart TVs, digital signage, etc. But if […]