How to write an Android multi-pane app with very deep navigation

前端 未结 3 806
感情败类
感情败类 2020-12-13 22:30

TL;DR: How should multi-pane apps with deep navigation similar to the Spotify iPad app look and work on Android, and how to implement this?

3条回答
  •  不思量自难忘°
    2020-12-13 23:12

    Partial answer to the animation part: You can do animations with the FragmentTransaction:

    ft.setCustomAnimations(android.R.anim.slide_in_left, 
        android.R.anim.slide_out_right);
    

    Update: see this answer from Reto Meier himself about fragment animation: https://stackoverflow.com/a/4819665/1007169

提交回复
热议问题