Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. <android.support.v4.widget.NestedScrollView
  2. android:id="@+id/fragmentContainer"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. app:layout_behavior="@string/appbar_scrolling_view_behavior">
  6. </android.support.v4.widget.NestedScrollView>
  7.  
  8. getSupportFragmentManager()
  9. .beginTransaction()
  10. .setCustomAnimations(R.anim.slide_right, R.anim.fade_out, R.anim.slide_left, R.anim.fade_out)
  11. .add(R.id.fragmentContainer, new RankingFragment(), RANKING_FRAGMENT)
  12. .commit();
  13.  
  14. getSupportFragmentManager()
  15. .beginTransaction()
  16. .setCustomAnimations(R.anim.slide_right, R.anim.fade_out, R.anim.slide_left, R.anim.fade_out)
  17. .replace(R.id.fragmentContainer, new com.steveq.photoquiz.ui.fragments.PreparationFragment(), PREPARATION_FRAGMENT)
  18. .addToBackStack(PREPARATION_FRAGMENT)
  19. .commit();
  20.  
  21. <android.support.v4.widget.NestedScrollView
  22. android:id="@+id/feed_club_tab_container"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:layout_below="@+id/feedui_pager_tab"
  26. android:fillViewport="true"
  27. app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement