当前位置:   article > 正文

Android AOSP 9.0 Launcher开发(一)Launcher基础知识_aosp lunch各版本意思

aosp lunch各版本意思

Android AOSP 9.0 Launcher开发(一)Launcher基础知识

1.什么是Launcher

Launcher,也就是我们平时所说的“桌面”,本质上与其他Android应用一样,都是apk应用程序,可以独立安装运行,我们平常使用的系统Launcher都是手机厂商定制后预制到系统里面的。

  1. 为什么按Home健就会启动Launcher,Launcher有什么不同?
  2. 为什么桌面应用列表不显示Launcher自身图标?
    看一下Launcher的主Activity配置
<activity
            android:name="com.android.launcher3.Launcher"
            android:launchMode="singleTask"
            android:clearTaskOnLaunch="true"
            android:stateNotNeeded="true"
            android:windowSoftInputMode="adjustPan"
            android:screenOrientation="unspecified"
            android:configChanges="keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenSize|screenLayout|smallestScreenSize"
            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>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20

这里通过设置<action android:name=“android.intent.action.MAIN” />和 <category android:name=“android.intent.category.HOME” />来告诉系统这是一个Launcher应用,只要你的应用主Activity配置里加上这两行,就可以成为Launcher应用了。

如果你希望你的应用图标显示在桌面应用列表中,只要保证intent-filter中同时存在<action android:name=“android.intent.action.MAIN” />和<category android:name=“android.intent.category.LAUNCHER” />就可以了

2.Launcher页面结构

Launcher界面布局

Launcher界面主要由一下5个部分构成

  1. drag_layer 监听拖拽层,所有其他控件都包裹在drag_layer内部
  2. workspace 也就是我们通俗所说的桌面,显示应用的容器,但超过一屏时,可以左右滑动(类似于ViewPager)
  3. CellLayout workspace的每一屏就是一个CellLayout(类似于ViewPage的每个Item)
  4. page_indicator 滑动页面指示器,用来提示当前在哪一页,国内厂商基本显示的圆点,原生显示的横线
  5. HotSeat 底部固定的一排应用,不跟随屏幕左右滑动
  6. drop_target_bar 长按拖动图标时,屏幕顶端的提示“移除”或“卸载”
  7. BubbleTextView 每一个应用图标加上应用名称,整体是一个BubbleTextView

3. 桌面图标类型

ItemInfo是所有所有类型的父类,看一下源码对ItemInfo的解释
在这里插入图片描述
在这里插入图片描述
继承自ItemInfo,衍生出以下类型:

	 * {@link LauncherSettings.Favorites#ITEM_TYPE_APPLICATION},
     * {@link LauncherSettings.Favorites#ITEM_TYPE_SHORTCUT},
     * {@link LauncherSettings.Favorites#ITEM_TYPE_DEEP_SHORTCUT}
     * {@link LauncherSettings.Favorites#ITEM_TYPE_FOLDER},
     * {@link LauncherSettings.Favorites#ITEM_TYPE_APPWIDGET} or
     * {@link LauncherSettings.Favorites#ITEM_TYPE_CUSTOM_APPWIDGET}.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

AppInfo: 对应于ITEM_TYPE_APPLICATION,表示一个应用
ShortcutInfo: 对应于ITEM_TYPE_SHORTCUT,表示一个快捷方式,Android O以后新增一种shortcut,就是桌面长按图标弹出的每一个Item,还可以长按拖动到桌面,形成一个快捷方式,也就对应着ITEM_TYPE_DEEP_SHORTCUT
FolderInfo: 对应于ITEM_TYPE_FOLDER,表示一个由多个应用图标组成的文件夹
LauncherAppWidgetInfo: 对应于ITEM_TYPE_APPWIDGET,表示一些桌面小部件,类似于时钟,天气等

以上内容只是对桌面有一个初步了解

个人见解,如有错误,烦请指正~

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

闽ICP备14008679号