">e.g.
当前位置:   article > 正文

Android 应用(4)——将APP设置为主界面Launcher_
作者:小丑西瓜9 | 2024-03-25 18:00:23

1、给APP设置HOME属性

将自己开发的APP设置为主界面Launcher,需要添加如下属性:

<category android:name="android.intent.category.HOME" />
  • 1

e.g.

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.HOME" />
            </intent-filter>
        </activity>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

2、给APP设置system属性

设置app system的属性:

android:sharedUserId="android.uid.system"
  • 1

e.g.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.forlinx.android.audostart"
    android:sharedUserId="android.uid.system">
    <!---->

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

3、给APP签名

为了设置system属性,就需要对app进行签名:
在这里插入图片描述
app设置system属性和进行签名,涉及到了Android的安全策略部分,可以参考如下链接进行了解:

https://blog.csdn.net/scottmvp/article/details/115871037
https://blog.csdn.net/scottmvp/article/details/121602149
  • 1
  • 2

编译app并安装到开发板,重新启动开发板,在进入桌面的阶段,会让我们选择要启动的Launcher:默认的Launcher3和我们添加的Launcher。

2、去掉原有的Launcher3

Android10.0默认的主界面程序是谷歌开发的Launcher3,现在有了关闭主界面程序的需求。我们的思路比较简单:去掉Launcher3编译生成的apk。
禁掉Launcher3源码的编译,在源码中去掉Launcher3的编译文件:

mv packages/apps/Launcher3/Android.mk packages/apps/Launcher3/Android.mk.txt
mv packages/apps/Launcher3/SecondaryDisplayLauncher/Android.mk packages/apps/Launcher3/SecondaryDisplayLauncher/Android.mk.txt
  • 1
  • 2

删除Launcher3的历史编译结果:

find ./out/ -name "Launcher3*" | xargs rm -rf
  • 1

重新编译测试,Launcher3主界面程序已经不再启动。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/311612
推荐阅读
相关标签