文件名称:Android代码-酷炫的 Fragment 切换动画,我承认是有些浮夸。
文件大小:17.94MB
文件格式:ZIP
更新时间:2022-08-26 14:14:38
Android代码
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