Android 中的卷曲动画(如书本的打开页面)

2023-12-31

我正在开发一个包含许多图像(高清)的应用程序,这些图像将通过分别向左/向右交换屏幕来显示在下一个/上一个图像中。图像的更改应该像打开书页(卷曲动画http://www.youtube.com/watch?v=_vOYvaNhSHw http://www.youtube.com/watch?v=_vOYvaNhSHw)而且在每一页上,我都必须触摸屏幕的不同部分播放不同的音频文件。我用谷歌搜索并找到了许多解决方案,但这些解决方案不起作用并显示内存越界异常。这些网址是

  1. https://github.com/MysticTreeGames/android-page-curl https://github.com/MysticTreeGames/android-page-curl
  2. https://www.youtube.com/watch?v=iwu7P5PCpsw https://www.youtube.com/watch?v=iwu7P5PCpsw
  3. android中Activity中的翻页效果 https://stackoverflow.com/questions/14973087/page-curl-effect-in-an-activity-in-android
  4. Android 截取屏幕外页面的屏幕截图 https://stackoverflow.com/questions/5604125/android-taking-screenshot-of-offscreen-page
  5. http://www.youtube.com/watch?v=mP_AlvJqSLQ http://www.youtube.com/watch?v=mP_AlvJqSLQ
  6. Android活动页面卷曲动画 https://stackoverflow.com/questions/16727907/android-activity-page-curl-animation
  7. 制作类似滑动时页面变化的动画 https://stackoverflow.com/questions/20698207/make-animation-like-page-changing-when-swiped
  8. https://github.com/harism/android_page_curl https://github.com/harism/android_page_curl
  9. 在android上实现页面卷曲? https://stackoverflow.com/questions/3912849/implement-page-curl-on-android.... 还有很多。

在上述所有链接中,内存问题或卷曲动画是最糟糕的,所以我无法从他们那里获得帮助。

请帮助我解决这些问题。我们将不胜感激。


您可以在清单中添加以下选项吗?就我而言,当我有大的时候这对我有帮助bitmap and OutOfMemoryError

    android:hardwareAccelerated="true"
    android:largeHeap="true"
    android:icon="@drawable/ic_launcher_android"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Android 中的卷曲动画(如书本的打开页面) 的相关文章

随机推荐