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.
我正在搜索图片库应用程序的视图。我搜索并找到了滑动视图文章,但找不到确切的解决方案。我正在寻找如下图所示的视图。
我知道要实现顶部面板,我必须使用 ActionBarSherlock,因为 ActionBar 不支持 Android 2.3。但是他们如何实现显示图像。并且在有人单击图像后,它将启动新的 Activity。
我试图用 ListView 来实现,但比我想象的要难。我认为有一个简单的方法,但不知道如何搜索它。任何想法都值得赞赏。
您展示的图片是gridview 的一个示例。可以使用布局文件中的 GridView 和 Adapter 将图像作为 Grid 的项目来实现。此外,可以使用 FrameLayout 放置每个图像上的底部半透明条。我在我的应用程序中实现了同样的事情。
在 GridView 上查找一些示例。