Android之Launcher分析和修改5——HotSeat分析

举报
chenyu 发表于 2021/07/27 02:03:29 2021/07/27
【摘要】 今天主要是分析一下Launcher里面的快捷方式导航条——HotSeat,一般我们使用手机底下都会有这个导航条,但是如果4.0的Launcher放到平板电脑里面运行,默认是没有HotSeat的,刚好我这里的运行环境类似平板,系统默认把HotSeat去掉了。办法,只能自己想办法把它弄出来,所以今天主要是分析如何在你Launcher上添加HotSeat以及分析HotSeat实现...

今天主要是分析一下Launcher里面的快捷方式导航条——HotSeat,一般我们使用手机底下都会有这个导航条,但是如果4.0的Launcher放到平板电脑里面运行,默认是没有HotSeat的,刚好我这里的运行环境类似平板,系统默认把HotSeat去掉了。办法,只能自己想办法把它弄出来,所以今天主要是分析如何在你Launcher上添加HotSeat以及分析HotSeat实现。

  Hotseat配置是通过配置文件控制的,一般来说,你需不需要Hotseat只要在配件文件里面写一下就OK,不过Hotseat有一个比较麻烦的地方,就是需要注意横屏还是竖屏。默认竖屏的时候,Hotseat是屏幕底下的,横屏的时候,在屏幕右边。不知道google当时为啥要这样设计,可能是为了横屏的时候,不占用本来就不多的竖向的空间吧。不过这个设计对于一些横屏的平板电脑或者移动设备,用户体验实在不太好。

 

1、Hotseat配置文件

  下面我们看看Hotseat的配置文件,Hotseat是属于workspace的,所以需要在workspace配置文件里面配置,打开launcher.xml就可以看到hotseat的配置,这个并不是所有launcher.xml文件都有hotseat属性。例如:layout-sw600dp件夹下的launcher.xml就是默认没有hotseat配置,这个使用在大屏幕,平板之类的设置上。而我的设备刚好是使用这个配置。

所以把hotseat加到layout-sw600dp下的launcher.xml配置文件:


  
  1. //Edited by mythou
  2. //http://www.cnblogs.com/mythou/
  3. <!-- WorkSpace最下面的五个快捷位置 mythou-->
  4. <include layout="@layout/hotseat"
  5. android:id="@+id/hotseat"
  6. android:layout_width="match_parent"
  7. android:layout_height="@dimen/button_bar_height_plus_padding"
  8. android:layout_gravity="bottom" />

  注意,我这里是使用了竖屏时的hotseat配置,因为我希望hotseat是放到屏幕下方。所以android:layout_gravity=

"bottom"也是配置为bottom。hotseat默认是有5个按钮,其中中间一个是进入AllApp列表的按钮,这个是程序里面设置

(下面会说到)。其他的默认按钮需要在default_workspace.xml里面配置。


  
  1. //Edited by mythou
  2. //http://www.cnblogs.com/mythou/
  3. <!-- Hotseat (We use the screen as the position of the item in the hotseat) -->
  4.   <!-- 使用screen作为按钮位置标识-->
  5. <favorite
  6. launcher:packageName="com.example.naviback"
  7. launcher:className="com.example.naviback.MainActivity"
  8. launcher:container="-101"
  9. launcher:screen="0"
  10. launcher:x="0"
  11. launcher:y="0" />
  12. <favorite
  13. launcher:packageName="com.csr.dvd"
  14. launcher:className="com.csr.dvd.LoadDVD"
  15. launcher:container="-101"
  16. launcher:screen="1"
  17. launcher:x="1"
  18. launcher:y="0" />
  19. <favorite
  20. launcher:packageName="com.apical.apicalradio"
  21. launcher:className="com.apical.apicalradio.RadioMainActivity"
  22. launcher:container="-101"
  23. launcher:screen="3"
  24. launcher:x="3"
  25. launcher:y="0" />
  26. <favorite
  27. launcher:packageName="com.csr.BTApp"
  28. launcher:className="com.csr.BTApp.CSRBluetoothDemoActivity"
  29. launcher:container="-101"
  30. launcher:screen="4"
  31. launcher:x="4"
  32. launcher:y="0" />

default_workspace的配置,我在第一篇文章里面已经说过了,不清楚的可以点击这里 。配置hotseat的属性跟workspace的有点不一样,下面针对不同的属性进行说明:

  • launcher:container:需要标识为-101 ,代表是hotseat的默认按钮。
  • launcher:screen:代表按钮的位置,0是第一个位置。ALlApp按钮默认是2,所以上面并没有screen为2的标签。
其他的属性跟workspace配置的属性一样,可以参考我写的第一篇文章。

配置完hotseat的默认按钮后,我们需要修改hotseat.xml的配置属性才能正常显示,下面是hotseat.xml的配置,

我是使用了竖屏时的hotseat配置。


  
  1. //Edited by mythou
  2. //http://www.cnblogs.com/mythou/
  3. <com.android.launcher2.Hotseat
  4. xmlns:android="http://schemas.android.com/apk/res/android"
  5. xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"
  6. android:background="@drawable/hotseat_bg_panel" <!--设置hotseat的背景 -->
  7. launcher:cellCountX="5" <!-- 代表hotseat横向有多少个方格(图标) -->
  8. launcher:cellCountY="1"> <!-- 代码hotseat竖向有多少个方格-->
  9. <com.android.launcher2.CellLayout <!--实际容纳按钮的容器是CellLayout -->
  10. android:id="@+id/layout"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="center"
  14. <!--下面几个属性就是控制5个按钮的显示位置调整,跟我们一般使用控件属性一样 -->
  15. android:paddingTop="3dp"
  16. android:paddingBottom="3dp"
  17. android:paddingLeft="150dp"
  18. android:paddingRight="@dimen/button_bar_height_bottom_padding"
  19. <!-- hotseat里面按钮的大小以及两个按钮之间的间距 -->
  20. launcher:cellWidth="106dip"
  21. launcher:cellHeight="106dip"
  22. launcher:widthGap="25dp"
  23. launcher:heightGap="@dimen/hotseat_height_gap"
  24. launcher:maxGap="@dimen/workspace_max_gap" />
  25. </com.android.launcher2.Hotseat>

上面的属性,有几个我们是需要留意,因为这是直接关系我们hotseat的显示效果。上面我已经给出了一些关键属性大部分跟我们使用一般控件是一样的,其他的launcher:XXX就是launcher自己定义的属性。上面已经给出注释。需要注意的是launcher:cellCountX和launcher:cellCountY两个属性,这个跟横向竖向的hotseat有关。另外就是从中我们也可以看到其实hotseat可以定义多行多列。因为hotseat里面其实是包含了一个CellLayout,跟workspace一样。

  除了设置Hotseat的属性外,我们还需要设置workspace的属性,以为hotseat占用了一部分的空间,所以workspace就需要腾出一部分空间处理。例如原来你的workspace没有加入hotseat前是5*3设置,如果需要加入hotseat,你的workspace只能修改为5*2的配置,你需要在竖向空间流出一行的空间给hotseat使用。

 

2、Hotseat构造函数

到这里基本上配置已经设置好。不过显示出来的效果并不是我们想象的结果,因为Hotseat内部对横向和竖向屏幕做了处理,我们需要做些修改。Launcher里面有专门管理Hotseat的类:Hotseat.java 。

下面我们看看Hotseat.java的构造:


  
  1. //Edited by mythou
  2. //http://www.cnblogs.com/mythou/
  3. public Hotseat(Context context, AttributeSet attrs, int defStyle)
  4.   {
  5. super(context, attrs, defStyle);
  6. TypedArray a = context.obtainStyledAttributes(attrs,
  7. R.styleable.Hotseat, defStyle, 0);
  8. mCellCountX = a.getInt(R.styleable.Hotseat_cellCountX, -1);
  9. mCellCountY = a.getInt(R.styleable.Hotseat_cellCountY, -1);
  10. mIsLandscape = context.getResources().getConfiguration().orientation ==
  11. Configuration.ORIENTATION_LANDSCAPE;
  12. //设置成竖屏,使用竖屏时候的hotseat
  13. mIsLandscape = false;
  14. }

注意这里有一个大屏幕还是小屏幕的判断,这个是用来判断属于平板系统还是一般的手机系统。因为我系统是只会在横屏时使用,

所以我直接设置成mIsLandscape为小屏幕,因为Hotseat里面很多获取熟悉都是区分大小屏幕。小屏幕的时候,我们使用竖向

配置hotseat就可以得到相当于手机系统的hotseat效果,hotseat会显示在屏幕底下。

基本上修改上面几个地方,就可以在平板屏幕底下显示hotseat。下面我们分析一下Hotseat是如何实现的。

 

3、Hotseat加载数据

Hotseat加载数据可以分为两部分,AllApp按钮和其他默认按钮。下面我们先看看其他默认按钮是如何加载的:

默认按钮加载跟workspace的默认数据加载一样,都是在LauncherModel加载。

Hotseat和workspace的app类型加载方式一样,


  
  1. //Edited by mythou
  2. //http://www.cnblogs.com/mythou/
  3. private void loadWorkspace()
  4. {
  5.   //........
  6. switch (container)
  7. {
  8. case LauncherSettings.Favorites.CONTAINER_DESKTOP:
  9. case LauncherSettings.Favorites.CONTAINER_HOTSEAT:
  10. sWorkspaceItems.add(info);
  11. break;
  12. //........
  13. }

上面是上一篇我们分析Launcher加载初始化数据的部分代码,我们可以看到,Hotseat的数据加载跟workspace的一般APP快捷方式加载是一样的,而且他们共用一个队列保存数据。具体数据加载过程分析可以查看我上一篇文章。

 

4、Hotseat绑定数据

 hotseat绑定数据跟workspace流程基本一样,下面是hotseat开始绑定时,调用了Hotseat自身的方法清空数据。


  
  1. public void startBinding()
  2. {
  3. //..........
  4. // 清空Hotseat的数据
  5. if (mHotseat != null)
  6.   {
  7. mHotseat.resetLayout();
  8. }
  9. }

上面配置文件分析的时候,我们也说了Hotseat里面其实也是一个CellLayout负责管理内部的元素,下面我们看看它如何绑定数据

到CellLayout。在workspace.java类里面的addInScreen()方法实现。


  
  1. //Edited by mythou
  2. //http://www.cnblogs.com/mythou/
  3. void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY,
  4. boolean insert) {
  5. //...........
  6. //创建CellLayout,用于添加Hotseat的对象。
  7. final CellLayout layout;
  8. if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {
  9. layout = mLauncher.getHotseat().getLayout();
  10. child.setOnKeyListener(null);
  11. // Hide folder title in the hotseat
  12. if (child instanceof FolderIcon) {
  13. ((FolderIcon) child).setTextVisible(false);
  14. }
  15. if (screen < 0) {
  16. screen = mLauncher.getHotseat().getOrderInHotseat(x, y);
  17. } else {
  18. // Note: We do this to ensure that the hotseat is always laid out in the orientation
  19. // of the hotseat in order regardless of which orientation they were added
  20. //获取child的位置,返回true添加成功,false失败
  21. x = mLauncher.getHotseat().getCellXFromOrder(screen);
  22. y = mLauncher.getHotseat().getCellYFromOrder(screen);
  23. }
  24. } else {
  25. //如果Hotseat里面有Folder,隐藏文件夹名字
  26. if (child instanceof FolderIcon) {
  27. ((FolderIcon) child).setTextVisible(true);
  28. }
  29. layout = (CellLayout) getChildAt(screen);
  30. child.setOnKeyListener(new IconKeyEventListener());
  31. }
  32. //.........
  33. }

这里只给出Hotseat关键的添加代码,其他一些相关的内容,可以查看源码。

 

5、Hotseat类

Hotseat类里面其实东西不多,主要就是我们上面说的构造函数,另外还有下面的设置AllAPP按钮的方法。


  
  1. //Edited by mythou
  2. //http://www.cnblogs.com/mythou/
  3. void resetLayout() {
  4. //清空原来的内容
  5. mContent.removeAllViewsInLayout();
  6. //添加AllAPP按钮,也是一个BubbleTextView对象
  7. Context context = getContext();
  8. LayoutInflater inflater = LayoutInflater.from(context);
  9. BubbleTextView allAppsButton = (BubbleTextView)
  10. inflater.inflate(R.layout.application, mContent, false);
  11. //加载AllAPP按钮的图标,这里使用了selector作为按钮配置
  12. allAppsButton.setCompoundDrawablesWithIntrinsicBounds(null,
  13. context.getResources().getDrawable(R.drawable.all_apps_button_icon), null, null);
  14. // allAppsButton.setText(context.getString(R.string.all_apps_button_label));
  15. allAppsButton.setContentDescription(context.getString(R.string.all_apps_button_label));
  16. //allapp按钮触摸和点击响应,回调Launcher的功能
  17. allAppsButton.setOnTouchListener(new View.OnTouchListener()
  18. {
  19. @Override
  20. public boolean onTouch(View v, MotionEvent event) {
  21. if (mLauncher != null &&
  22. (event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
  23. mLauncher.onTouchDownAllAppsButton(v);
  24. }
  25. return false;
  26. }
  27. });
  28. //AllAPP按钮点击响应的方法,点击的处理在Launcher类里面
  29. allAppsButton.setOnClickListener(new View.OnClickListener()
  30. {
  31. @Override
  32. public void onClick(android.view.View v) {
  33. if (mLauncher != null) {
  34. mLauncher.onClickAllAppsButton(v);
  35. }
  36. }
  37. });
  38. //这里会判断是小屏幕还是大屏幕,决定AllAPP按钮的位置
  39. int x = getCellXFromOrder(sAllAppsButtonRank);
  40. int y = getCellYFromOrder(sAllAppsButtonRank);
  41. Log.d("Mythou_Launcher", "Hotseat------>x="+x+" y="+y);
  42. //Hotseat中清空了装载的内容,然后重新加载allAppsButton到CellLayout mythou
  43. mContent.addViewToCellLayout(allAppsButton, -1, 0, new CellLayout.LayoutParams(x,y,1,1),
  44. true);
  45. }
  46. 复制代码


Hotseat里面其他几个简单方法,基本上都是获取一些属性,这里就不详细分析。

6、总结

  • Hotseat其实也是一个CellLayout负责管理里面的所有数据。
  • 大部分配置可以通过XML配置文件修改得到。
  • 加载和绑定数据和workspace基本是一致的。

今天就写到这里,有关CellLayout的分析,下一篇文章会讲述。







文章来源: chenyu.blog.csdn.net,作者:chen.yu,版权归原作者所有,如需转载,请联系作者。

原文链接:chenyu.blog.csdn.net/article/details/52643100

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。