Android 8.0 隐藏 Launcher3
Posted 王睿丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 8.0 隐藏 Launcher3相关的知识,希望对你有一定的参考价值。
packages\\apps\\Launcher3\\androidManifest.xml
<activity
android:name="com.android.launcher3.Launcher"
android:launchMode="singleTask"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true"
android:windowSoftInputMode="adjustPan"
android:screenOrientation="nosensor"
android:configChanges="keyboard|keyboardHidden|navigation"
android:resizeableActivity="true"
android:resumeWhilePausing="true"
android:taskAffinity=""
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
-- <category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
-- <category android:name="android.intent.category.MONKEY"/>
-- <category android:name="android.intent.category.LAUNCHER_APP" />
</intent-filter>
</activity>
以上是关于Android 8.0 隐藏 Launcher3的主要内容,如果未能解决你的问题,请参考以下文章