滑动碎片 Android 应用

Swipe Fragments Android app

我正在尝试制作一个基本上是一本书的应用程序。在这个应用程序中,它有书籍,有章节,有诗句。我正在尝试确定哪种方法是实现这一点的最佳方法。我正在使用片段和滑动视图,当我滑动到下一页时,它会改变章节。我的问题是,因为这个应用程序将有大约一百本书、更多的章节和更多的内容,所以我认为为每一章制作新的片段不会对应用程序的性能有好处。是否有最适合我的应用程序的特定方法或布局?

你想要这样的卷曲动画:

https://www.youtube.com/watch?v=mP_AlvJqSLQ

要实现此动画,请使用 overridePendingTransition:

startActivity(new Intent(this, NewActivity.class));  
overridePendingTransition(R.anim.push_left_in,R.anim.push_up_out); 

push_left_in.xml:

<?xml version="1.0" encoding="utf-8"?>  
<set xmlns:android="http://schemas.android.com/apk/res/android">  

  <translate android:fromXDelta="100%p" android:toXDelta="0" android:duration="300"/>  
  <alpha android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="300" />  

</set>  

push_up_out.xml :

<?xml version="1.0" encoding="utf-8"?>  
<set xmlns:android="http://schemas.android.com/apk/res/android">  

  <translate android:fromXDelta="100%p" android:fromYDelta="100%p" android:toXDelta="0" android:toXDelta="0" android:duration="300"/>  

</set> 

如果你想要教程或示例,请按照下面link:

  1. http://www.41post.com/3368/programming/android-changing-the-animation-between-activities
  2. https://github.com/harism/android_page_curl
  3. https://github.com/emilsjolander/android-FlipView
  4. https://github.com/MysticTreeGames/android-page-curl