Currently i am working in Android application, In iphone application Using presentModalViewController to animate view from bottom to top on a screen, similarly in Android application, How to use presentModalViewController Control in Android? Is it possible to add this? I refer the internet but i got only MVC pattern, so please help me.
Thanks in Advance
Using presentModalViewController in iPhone apps:
bookview *book = [[bookview alloc]init];
UINavigationController *navi = [[UINavigationController alloc] initWithRootViewController:book];
[self presentModalViewController:navi animated:YES];