3

目前我在 Android 应用程序中工作,在 iphone 应用程序中使用 presentModalViewController 在屏幕上从下到上动画视图,类似地在 Android 应用程序中,如何在 Android 中使用 presentModalViewController 控件?可以添加这个吗?我参考了互联网,但我只有 MVC 模式,所以请帮助我。

提前致谢

在 iPhone 应用程序中使用 presentModalViewController:

 bookview *book = [[bookview alloc]init];  
    UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:book];
    [self presentModalViewController:navi animated:YES];
4

1 回答 1

2

android 中没有 NavigationController,而是将 android 活动从 Activity 堆栈中推送和弹出,由 ActivityManager 维护。

要在活动开始或停止时添加动画,请阅读动画,或通过以下答案学习:

使用动画启动 Activity

于 2012-08-29T07:16:38.397 回答