登录 注册
当前位置:主页 > 资源下载 > 50 > 我承认,Android代码中实现的酷炫Fragment切换动画略显浮夸

我承认,Android代码中实现的酷炫Fragment切换动画略显浮夸

  • 更新:2024-09-04 11:14:44
  • 大小:17.94MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

Depth Add some Depth to your fragments The blue comes from the activity background color In your activity final Depth depth = DepthProvider.getDepth(container); depth .animate() .reduce(oldFragment) .exit(oldFragment) .enter(newFragment) .start(); In your fragment private Depth depth; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { this.depth = DepthProvider.getDepth(container); return dep