活动转换动画无法从选项卡活动到任何其他活动
我正在尝试使用 OverridePendingTransition 来使用活动转换动画 当我从应用程序中的一个活动移动到另一个活动时,相同的代码可以工作 但是当我在从选项卡一部分的活动转换时使用相同的方法时 任何其他活动。动画不起作用,标准动画发生
Intent intent = new Intent(xxx.this,
yyy.class);
startActivity(intent);
overridePendingTransition(R.anim.slide_left_in, R.anim.slide_left_out);
在这里 xxx 是选项卡活动类之一的类,yyy 是
我卡住的 任何活动类 任何帮助将不胜感激
谢谢
干杯 希曼舒
I am trying to use activity transition animaition using OverridePendingTransition
The same code works while I move from 1 activity to another everywhere in my App
But when I use the same while transitioning from an activity which is a part of tab
to any other activity. The animation does not work and the standard animation takes place
Intent intent = new Intent(xxx.this,
yyy.class);
startActivity(intent);
overridePendingTransition(R.anim.slide_left_in, R.anim.slide_left_out);
here xxx is the class which is one of the tabs activity class and yyy is any activity class
I am stuck
Any help would be appreciated
Thanks
Cheers
Himanshu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我向谷歌问题报告了同样的问题,提供的解决方法是(虽然我还没有尝试过):-我找到了解决这个问题的方法,它并不完美,但它有效。
我添加了 overridePendingTransition(R.anim.slide_left_in, R.anim.slide_left_out);
在 TabActivity 上的 onPause 之前。
I reported the same to google issues and the workaround provided was(I have not tried it though) :- I have found a way to work arround this, it is not perfect but it works.
I add the overridePendingTransition(R.anim.slide_left_in, R.anim.slide_left_out);
before the onPause on the TabActivity.
让它发挥作用的更好方法:
Better way to make it work: