Android之Launcher分析和修改5——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配置文件:

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

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

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

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

//Edited by mythou
//http://www.cnblogs.com/mythou/<!-- Hotseat (We use the screen as the position of the item in the hotseat) --><!-- 使用screen作为按钮位置标识--><favoritelauncher:packageName="com.example.naviback"launcher:className="com.example.naviback.MainActivity"launcher:container="-101"launcher:screen="0"launcher:x="0"launcher:y="0" /><favoritelauncher:packageName="com.csr.dvd"launcher:className="com.csr.dvd.LoadDVD"launcher:container="-101"launcher:screen="1"launcher:x="1"launcher:y="0" /><favoritelauncher:packageName="com.apical.apicalradio"launcher:className="com.apical.apicalradio.RadioMainActivity"launcher:container="-101"launcher:screen="3"launcher:x="3"launcher:y="0" /><favoritelauncher:packageName="com.csr.BTApp"launcher:className="com.csr.BTApp.CSRBluetoothDemoActivity"launcher:container="-101"launcher:screen="4"launcher:x="4"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配置。

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

//Edited by mythou
//http://www.cnblogs.com/mythou/public Hotseat(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);TypedArray a = context.obtainStyledAttributes(attrs,R.styleable.Hotseat, defStyle, 0);mCellCountX = a.getInt(R.styleable.Hotseat_cellCountX, -1);mCellCountY = a.getInt(R.styleable.Hotseat_cellCountY, -1);mIsLandscape = context.getResources().getConfiguration().orientation ==Configuration.ORIENTATION_LANDSCAPE;//设置成竖屏,使用竖屏时候的hotseatmIsLandscape = false;}

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

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

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

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

 

3、Hotseat加载数据

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

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

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

//Edited by mythou
//http://www.cnblogs.com/mythou/
private void loadWorkspace() 
{//........switch (container) {  case LauncherSettings.Favorites.CONTAINER_DESKTOP:  case LauncherSettings.Favorites.CONTAINER_HOTSEAT:  sWorkspaceItems.add(info);  break;  //........
}

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

 

4、Hotseat绑定数据

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

public void startBinding() 
{  //..........// 清空Hotseat的数据if (mHotseat != null) {  mHotseat.resetLayout();  }  
} 

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

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

//Edited by mythou
//http://www.cnblogs.com/mythou/void addInScreen(View child, long container, int screen, int x, int y, int spanX, int spanY,boolean insert) {//...........//创建CellLayout,用于添加Hotseat的对象。final CellLayout layout;if (container == LauncherSettings.Favorites.CONTAINER_HOTSEAT) {layout = mLauncher.getHotseat().getLayout();child.setOnKeyListener(null);// Hide folder title in the hotseatif (child instanceof FolderIcon) {((FolderIcon) child).setTextVisible(false);}if (screen < 0) {screen = mLauncher.getHotseat().getOrderInHotseat(x, y);} else {// Note: We do this to ensure that the hotseat is always laid out in the orientation// of the hotseat in order regardless of which orientation they were added//获取child的位置,返回true添加成功,false失败  x = mLauncher.getHotseat().getCellXFromOrder(screen);y = mLauncher.getHotseat().getCellYFromOrder(screen);}} else {//如果Hotseat里面有Folder,隐藏文件夹名字if (child instanceof FolderIcon) {((FolderIcon) child).setTextVisible(true);}layout = (CellLayout) getChildAt(screen);child.setOnKeyListener(new IconKeyEventListener());}//.........}

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

 

5、Hotseat类

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

//Edited by mythou
//http://www.cnblogs.com/mythou/
void resetLayout() {//清空原来的内容mContent.removeAllViewsInLayout();//添加AllAPP按钮,也是一个BubbleTextView对象Context context = getContext();LayoutInflater inflater = LayoutInflater.from(context);BubbleTextView allAppsButton = (BubbleTextView)inflater.inflate(R.layout.application, mContent, false);//加载AllAPP按钮的图标,这里使用了selector作为按钮配置allAppsButton.setCompoundDrawablesWithIntrinsicBounds(null,context.getResources().getDrawable(R.drawable.all_apps_button_icon), null, null);// allAppsButton.setText(context.getString(R.string.all_apps_button_label));allAppsButton.setContentDescription(context.getString(R.string.all_apps_button_label));//allapp按钮触摸和点击响应,回调Launcher的功能allAppsButton.setOnTouchListener(new View.OnTouchListener() {@Overridepublic boolean onTouch(View v, MotionEvent event) {if (mLauncher != null &&(event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {mLauncher.onTouchDownAllAppsButton(v);}return false;}});//AllAPP按钮点击响应的方法,点击的处理在Launcher类里面allAppsButton.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(android.view.View v) {if (mLauncher != null) {mLauncher.onClickAllAppsButton(v);}}});//这里会判断是小屏幕还是大屏幕,决定AllAPP按钮的位置int x = getCellXFromOrder(sAllAppsButtonRank);int y = getCellYFromOrder(sAllAppsButtonRank);Log.d("Mythou_Launcher", "Hotseat------>x="+x+"  y="+y);//Hotseat中清空了装载的内容,然后重新加载allAppsButton到CellLayout mythoumContent.addViewToCellLayout(allAppsButton, -1, 0, new CellLayout.LayoutParams(x,y,1,1),true);}
复制代码


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

6、总结

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

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







本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/292914.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用Spectre.Console创建漂亮的控制台应用程序

前言你是否厌倦了控制台应用程序默认的简陋界面&#xff1f;这时&#xff0c;你可以试试引用Nuget包Spectre.Console。打印使用帮助首先&#xff0c;我们可以设置控制台应用程序可以执行的命令&#xff1a;static async Task<int> Main(string[] args) {var app new Com…

Boosting集合算法详解(一)

本文是关于聚类算法的第二篇K-means&#xff0c;感兴趣的同学可以前往http://ihoge.cn/2018/clustering.html 阅读完整版。 二、K-means 1. 算法步骤 <1> 选择KK个点作为初始质心 <2> Repeat: <3> 将每个点指派到最近的质心,形成K" role="pre…

一款不错的网站压力测试工具webbench

webbench最多可以模拟3万个并发连接去测试网站的负载能力  1、适用系统&#xff1a;Linux  2、编译安装&#xff1a; wget http://home.tiscali.cz/~cz210552/distfiles/webbench-1.5.tar.gztar zxvf webbench-1.5.tar.gzcd webbench-1.5make && make installUnbun…

WindowsPhone8可缩放图片控件的实现

xaml中添加: <ViewportControl x:Name"viewport" DoubleTap"OnDoubleTap"ManipulationStarted"OnManipulationStarted" ManipulationDelta"OnManipulationDelta" ManipulationCompleted"OnManipulationCompleted" Viewpo…

python导入自定义模块_Python3 导入自定义的包

什么是包&#xff1f; 要想知道什么是包&#xff0c;得先了解一下模块的概念。 模块是一个包含所有你定义的函数和变量的文件&#xff0c;其后缀名是 .py。模块可以被别的程序引入&#xff0c;以使用该模块中的函数等功能。 知道了模块&#xff0c;那紧接着看看包&#xff1a; …

Android之ComponentName的用法

ComponentName(组件名称)是用来打开其他应用程序中的Activity或服务的、 ComponentName,顾名思义,就是组件名称,通过调用Intent中的setComponent方法,我们可以打开另外一个应用中的Activity或者服务。 实例化一个ComponentName需要两个参数,第一个参数是要启动应用的包…

Linux入门之进程管理(4)之进程与文件

Linux入门之进程管理(4)之进程与文件前面使用进程相关命令管理工具都是根据进程编号或者进程名称及其其它属性信息来查看和处理相关进程的&#xff0c;但是在某些情况下&#xff0c;想要查看某个文件或者某个设备被哪些进程所使用&#xff0c;使用ps、pgrep等命令查询的是不够准…

巧用Hive自带函数进行多字段分别去重计数统计

巧用Hive自带函数进行多字段分别去重计数统计 1-group by 和 distinct 大前提&#xff1a;大表统计能使用group by就不要使用distinct&#xff01;&#xff01; 尤其是在数据量非常大的时候&#xff0c;distinct会将所有的统计信息加载到一个reducer里取执行&#xff0c;这就是…

初识MASA Blazor

MASA Blazor是一个Blazor的UI组件库。就像大家写前端熟知的Bootstrap, Ant Design一样。MASA Blazor官网地址&#xff1a;https://blazor.masastack.comMASA Blazor Github地址&#xff1a;https://github.com/BlazorComponent/MASA.BlazorMASA Blazor Pro演示地址&#xff1a;…

Thread.sleep还是TimeUnit.SECONDS.sleep

刚看到TimeUnit.SECONDS.sleep()方法时觉得挺奇怪的&#xff0c;这里怎么也提供sleep方法&#xff1f;public void sleep(long timeout) throws InterruptedException {if (timeout > 0) {long ms toMillis(timeout);int ns excessNanos(timeout, ms);Thread.sleep(ms, ns…

win7技巧

win7鼠标右键菜单清理 win7右键菜单设置 |浏览&#xff1a;7659|更新&#xff1a;2014-03-04 14:23|标签&#xff1a; windows7 鼠标 1234567分步阅读虽然我们现在打开某个软件都是双击解决完事&#xff0c;但是偶尔我们需要右键属性的时候&#xff0c;可以看到右键菜单拖拖拉拉…

shell基础一

Shell支持自定义变量。 定义变量 定义变量时&#xff0c;变量名不加美元符号&#xff08;$&#xff09;&#xff0c;如&#xff1a; variableName"value" 注意&#xff0c;变量名和等号之间不能有空格&#xff0c;这可能和你熟悉的所有编程语言都不一样。 同时&…

python画方波_python实现周期方波信号频谱图

在学习傅里叶变换的时候遇到了求周期方波信号频谱图的例子&#xff0c;在书上和网上查阅了一些资料&#xff0c;发现大都是讨论的都是下图左边的周期信号的频谱&#xff0c;课程老师的PPT中也只列出了另一种周期信号频谱图的结论&#xff0c;没有在进行傅里叶变换&#xff0c;自…

基于Python的电商平台淘宝商品评论数据采集与分析

引言 在电商竞争日益激烈的情况下&#xff0c;商家既要提高产品质量&#xff0c;又要洞悉客户的想法和需求&#xff0c;关注客户购买商品后的评论&#xff0c;而第三方API接口商家获取商品评价主要依赖于人工收集&#xff0c;不但效率低&#xff0c;而且准确度得不到保障。通过…

《Pyflink》Flink集群安装,Python+Flink调研

Flink集群安装&#xff0c;PythonFlink调研 Flink集群部署 下载对应版本安装包&#xff1a;https://flink.apache.org/downloads.html 实验环境为hadoop2.7&#xff0c; scala2.11 所以下载flink-1.7.1-bin-hadoop27-scala_2.11.tgz 配置conf/flink-conf.yaml jobmanager.rpc…

项目手札2---关于分页显示时地址栏的风格

在控制器里&#xff0c;用RequestMapping("")时我们可能用RESTFUL风格的来映射&#xff0c;也有可能是用其他的方式&#xff0c;用或不用RESTFUL风格在分页显示时的地址栏里有些不同。首先来看不用RESTFUL时地址栏的样子&#xff1a; <li><a href"show…

shell基础二

前面已经讲到&#xff0c;变量名只能包含数字、字母和下划线&#xff0c;因为某些包含其他字符的变量有特殊含义&#xff0c;这样的变量被称为特殊变量。例如&#xff0c;$ 表示当前Shell进程的ID&#xff0c;即pid&#xff0c;看下面的代码&#xff1a; $echo $$ 运行结果 29…