Android:从底部翻译菜单
我尝试了很多从底部翻译菜单的方法,但无法解决。我在完成此动画时有一个 30 秒的帧动画,我想用从底部开始的平移动画显示我的菜单。有什么想法吗?
在代码的 run 方法中我想添加翻译。可以这样做吗?
这是代码
帮助总是值得赞赏......!谢谢
if (ekgframeAnimation4.isRunning()) {
// ekgimgview4.postDelayed(ekgframeAnimation4, 30000);
findViewById(R.id.ekgimgview4).postDelayed(new Runnable()
{
public void run()
{
// I want to show my own popup menu here
}
}, 30000);
ekgframeAnimation4.stop();
}
I tried a lot to translate my menu from bottom and couldn't able to solve. I have a frame animation for 30 seconds on completing this animation I want to show my menu with translate animation from bottom. any Idea?
In the run method of the code I want to add the translation. Is it possible to do so?
here is the code
Help is always appreciated.....! Thanks
if (ekgframeAnimation4.isRunning()) {
// ekgimgview4.postDelayed(ekgframeAnimation4, 30000);
findViewById(R.id.ekgimgview4).postDelayed(new Runnable()
{
public void run()
{
// I want to show my own popup menu here
}
}, 30000);
ekgframeAnimation4.stop();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一定要看看这篇文章,它可能对你有帮助。
查看动画
Be sure to check this post, it may be helpful to you.
View Animation