不可思议的大剑 2016-09-19 03:53 采纳率: 0%
浏览 2693

Android: 怎么去掉updateViewLayout的动画效果

RT,布局从全屏设为包裹时 updateViewLayout 会有个移动的动画效果怎么去掉

  • 写回答

2条回答

  • 鱼弦 全栈领域优质创作者 2016-09-19 05:14
    关注

    请修改Launcher.java的startActivity方法,如下:
      boolean startActivity(View v, Intent intent, Object tag) { if (LauncherLog.DEBUG) { LauncherLog.d(TAG, "startActivity v = " + v + ", intent = " + intent + ", tag = " + tag); } intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); try { // Only launch using the new animation if the shortcut has not opted out (this is a // private contract between launcher and may be ignored in the future). //boolean useLaunchAnimation = (v != null) && //mtk modify // !intent.hasExtra(INTENT_EXTRA_IGNORE_LAUNCH_ANIMATION); //mtk modify boolean useLaunchAnimation = false; //mtk add /// M: add systrace to analyze application launche time. Trace.traceBegin(Trace.TRACE_TAG_INPUT, "Launcher.startActivity"); if (useLaunchAnimation) { ActivityOptions pts = ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getMeasuredWidth(), v.getMeasuredHeight()); startActivity(intent, opts.toBundle()); } else { startActivity(intent); } /// M: add systrace to analyze application launche time. Trace.traceEnd(Trace.TRACE_TAG_INPUT); return true; } catch (SecurityException e) { Toast.makeText(this, R.string.activity_not_found, Toast.LENGTH_SHORT).show(); Log.e(TAG, "Launcher does not have the permission to launch " + intent + ". Make sure to create a MAIN intent-filter for the corresponding activity " + "or use the exported attribute for this activity. " + "tag=" + tag + " intent=" + intent, e); } return false; }

    
    
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘