前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Android不显示开机向导和开机气泡问题

Android不显示开机向导和开机气泡问题

作者头像
砸漏
发布2020-11-04 10:50:42
5580
发布2020-11-04 10:50:42
举报
文章被收录于专栏:恩蓝脚本

修改好的代码下载地址:

https://github.com/Vico-H/Launcher

•不显示开机向导

——————————————————————————– 修改Launcher2.java的代码

(文件位置: /alps/packages/apps/Launcher2/src/com/android/launcher2/Launcher.java)

网站查看源码:

https://www.androidos.net.cn/android/6.0.1_r16/xref/packages/apps/Launcher2/src/com/android/launcher2/Launcher.java

Launcher2.java部分源码如下:

代码语言:javascript
复制
······
public void showFirstRunWorkspaceCling() {
  // Enable the clings only if they have not been dismissed before
  if (isClingsEnabled() &&
    !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&//此处false改为true
    !skipCustomClingIfNoAccounts() ) {
   // If we're not using the default workspace layout, replace workspace cling
   // with a custom workspace cling (usually specified in an overlay)
   // For now, only do this on tablets
   if (mSharedPrefs.getInt(LauncherProvider.DEFAULT_WORKSPACE_RESOURCE_ID, 0) != 0 &&
     getResources().getBoolean(R.bool.config_useCustomClings)) {
    // Use a custom cling
    View cling = findViewById(R.id.workspace_cling);
    ViewGroup clingParent = (ViewGroup) cling.getParent();
    int clingIndex = clingParent.indexOfChild(cling);
    clingParent.removeViewAt(clingIndex);
    View customCling = mInflater.inflate(R.layout.custom_workspace_cling, clingParent, false);
    clingParent.addView(customCling, clingIndex);
    customCling.setId(R.id.workspace_cling);
   }
   initCling(R.id.workspace_cling, null, false, 0);
  } else {
   removeCling(R.id.workspace_cling);
  }
 }
 public void showFirstRunAllAppsCling(int[] position) {
  // Enable the clings only if they have not been dismissed before
  if (isClingsEnabled() &&
    !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) {//此处false改为true
   initCling(R.id.all_apps_cling, position, true, 0);
  } else {
   removeCling(R.id.all_apps_cling);
  }
 }
 public Cling showFirstRunFoldersCling() {
  // Enable the clings only if they have not been dismissed before
  if (isClingsEnabled() &&
    !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) {//此处false改为true
   return initCling(R.id.folder_cling, null, true, 0);
  } else {
   removeCling(R.id.folder_cling);
   return null;
  }
 }
······

修改如下:

代码语言:javascript
复制
- !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, false) &&
+ !mSharedPrefs.getBoolean(Cling.WORKSPACE_CLING_DISMISSED_KEY, true) &&
- !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, false)) 
+ !mSharedPrefs.getBoolean(Cling.ALLAPPS_CLING_DISMISSED_KEY, true)) 
- !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, false)) 
+ !mSharedPrefs.getBoolean(Cling.FOLDER_CLING_DISMISSED_KEY, true)) 

•不显示开机气泡

——————————————————————————– 有个需求是开机不要下面这个图片所示的气泡

修改Launcher3.java的代码

(文件位置: /alps/packages/apps/Launcher3/src/com/android/launcher3/Launcher.java)

网站查看源码:

https://www.androidos.net.cn/android/6.0.1_r16/xref/packages/apps/Launcher3/src/com/android/launcher3/Launcher.java

Launcher3.java部分源码如下:

代码语言:javascript
复制
······
protected void onCreate(Bundle savedInstanceState) {
  ······
  if (shouldShowIntroScreen()) {
     showIntroScreen();
    } else {
     showFirstRunActivity();
     showFirstRunClings();//注释此行即可
    }
}
······

将下面的直接的这行注释掉就不会有开机气泡了

代码语言:javascript
复制
- showFirstRunClings();
+ //showFirstRunClings();

总结

以上所述是小编给大家介绍的Android不显示开机向导和开机气泡问题,希望对大家有所帮助,如果大家有任何欢迎给我留言,小编会及时回复大家的!

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-09-11 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档