欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Layer exceeds max. dimensions supported by the GPU (1080x4570,4060x4060)NestedScrollView

程序员文章站 2024-03-24 23:05:58
...

Content Transition出现的异常!

  1. Activity 过度动画。如下:
Intent intent = new Intent(context, BookDetailActivity.class);
        intent.putExtra(INTENT_KEY_BOOK_BOOK_ITEM_BEAN, bookItemBean);
        ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation
                (context, imageView, ResourcesUtils.getString(R.string.transition_book_img));//与xml文件对应
        ActivityCompat.startActivity(context, intent, options.toBundle())
  1. 对于activity的过度动画还不是很了解请先百度学习一下。
    从Activity_A过度到Activity_B 时,出现了异常
Layer exceeds max. dimensions supported by the GPU (1080x4570,4060x4060)

元素场景转换抛出层超过最大值。由GPU支持尺寸(Scene transition with hero elements throws Layer exceeds max. dimensions supported by the GPU)

解决办法
在合适的位置设置

android:transitionGroup="true"
相关标签: GPU Transition