Android Launcher 如何去掉主菜单,所有应用摆在桌面,类似小米桌面
5个回答
展开全部
那个桌面就是那样的改不了,你可以下载一个桌面替代他,比如GO桌面,小米桌面我没试过能否下载,你也可以搜索下。应该也是可以的。系统设置里面可以设置默认使用哪个桌面。
。。。。。。晕原来你是搞开发的呀,你可以把所有图标都放到workspace上,把应用列表屏蔽了,workspace的数据来源于LauncherModler类,里面会读一个数据库得到一个列表,然后再数据绑定把这个列表啪啪啪显示到workspace上,你可以去修改那个读数据库的方法,想办法把所有应用都加到那个列表上去。
。。。。。。晕原来你是搞开发的呀,你可以把所有图标都放到workspace上,把应用列表屏蔽了,workspace的数据来源于LauncherModler类,里面会读一个数据库得到一个列表,然后再数据绑定把这个列表啪啪啪显示到workspace上,你可以去修改那个读数据库的方法,想办法把所有应用都加到那个列表上去。
深圳市容大彩晶科技有限公司
2024-11-15 广告
2024-11-15 广告
广告机代理优选容大彩晶,深圳市容大彩晶科技有限公司自2007年成立伊始,一直专注于液晶商用显示产品的技术研发及产品服务。公司依托具有自主研发能力、创新高效的技术团队,打造出行业优质商用液晶显示设备。容大彩晶产品涵盖商用液晶显示、多媒体广告机...
点击进入详情页
本回答由深圳市容大彩晶科技有限公司提供
展开全部
Launcher3/src/com/android/launcher3/ 1. AppsCustomizePagedView.java public static boolean DISABLE_ALL_APPS = true; //mtk modify 2. AppsCustomizePagedView.java
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = MeasureSpec.getSize(heightMeasureSpec);
LauncherLog.d(TAG, onMeasure mIsInEditMode = + mIsInEditMode + widthMeasureSpec + + heightMeasureSpec
+ + width + + height);
if (!isDataReady()) {
LauncherLog.d(TAG, onMeasure DISABLE_ALL_APPS is + DISABLE_ALL_APPS
+ !mApps.isEmpty() is + !mApps.isEmpty()
+ !mWidgets.isEmpty() + !mWidgets.isEmpty());
if ((DISABLE_ALL_APPS || (!mApps.isEmpty() && mAppsHasSet)) && !mWidgets.isEmpty()) { //mtk modify
setDataIsReady();
setMeasuredDimension(width, height);
onDataReady(width, height);
}
} super.onMeasure(widthMeasureSpec, heightMeasureSpec);
} 3.Launcher.java private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
final AppsCustomizePagedView.ContentType contentType) {
......
// Shrink workspaces away if going to AppsCustomize from workspace
Animator workspaceAnim =
mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
//if (!AppsCustomizePagedView.DISABLE_ALL_APPS) { //mtk modify
// Set the content type for the all apps space
mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
//} //mtk modify
......
}
4. default_workspace.xml文件(这个文件很多路径有,请确保修改到正确的文件,例如)mediatek/operator/有) 这个文件会配置hotseat的图标,默认不会配置screen为2的位置,这是原来的allapp button,做了此客制化后就需要配置screen2,而不能配置screen 4,因此,请对应修改原来4个hotseat图标的screen id,从0到3.
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int width = MeasureSpec.getSize(widthMeasureSpec);
int height = MeasureSpec.getSize(heightMeasureSpec);
LauncherLog.d(TAG, onMeasure mIsInEditMode = + mIsInEditMode + widthMeasureSpec + + heightMeasureSpec
+ + width + + height);
if (!isDataReady()) {
LauncherLog.d(TAG, onMeasure DISABLE_ALL_APPS is + DISABLE_ALL_APPS
+ !mApps.isEmpty() is + !mApps.isEmpty()
+ !mWidgets.isEmpty() + !mWidgets.isEmpty());
if ((DISABLE_ALL_APPS || (!mApps.isEmpty() && mAppsHasSet)) && !mWidgets.isEmpty()) { //mtk modify
setDataIsReady();
setMeasuredDimension(width, height);
onDataReady(width, height);
}
} super.onMeasure(widthMeasureSpec, heightMeasureSpec);
} 3.Launcher.java private void showAppsCustomizeHelper(final boolean animated, final boolean springLoaded,
final AppsCustomizePagedView.ContentType contentType) {
......
// Shrink workspaces away if going to AppsCustomize from workspace
Animator workspaceAnim =
mWorkspace.getChangeStateAnimation(Workspace.State.SMALL, animated);
//if (!AppsCustomizePagedView.DISABLE_ALL_APPS) { //mtk modify
// Set the content type for the all apps space
mAppsCustomizeTabHost.setContentTypeImmediate(contentType);
//} //mtk modify
......
}
4. default_workspace.xml文件(这个文件很多路径有,请确保修改到正确的文件,例如)mediatek/operator/有) 这个文件会配置hotseat的图标,默认不会配置screen为2的位置,这是原来的allapp button,做了此客制化后就需要配置screen2,而不能配置screen 4,因此,请对应修改原来4个hotseat图标的screen id,从0到3.
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个就的需要重新开发launcher这个APK了。主要是把之前的结构便后page的结构,当然这个里面涉及很多的代码修改了,目前还没有源码放出来的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没这个功能,只能修改设置或者去下载别的桌面
像是Arrow桌面啊等等
或者把小米桌面用软件搞到电脑上,在装到手机上
像是Arrow桌面啊等等
或者把小米桌面用软件搞到电脑上,在装到手机上
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
换一个启动器就可以了,可以到各大应用市场下载
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询