Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前,我正在使用带有 LinearLayout 的 ScrollView。我想实现一个快照功能。我最好使用 ListView 吗?甚至可以使用我当前的设置实现快照功能吗?我想让事情变得简单。
通过“快照功能”,我假设您的意思是分页,以便用户可以像 Play Store 或 ICS Dialer 应用程序一样从一侧滑动到另一侧。虽然是的,但您可以使用 ScrollView 或任何数量的其他解决方案自己实现这一点,但我认为您不应该这样做,因为您可以使用 Android 的ViewPager类。
ViewPager
ViewPager是一个美妙的视图,它使用片段集合作为单个布局中的页面。这将为您的用户提供一个非常熟悉且一致的界面,并将为您节省大量非常困难的代码。