我正在处理应用程序,其中图库需要如下图所示:
我在互联网上搜索,但它的结果与图片库相似。但我想创建一个以循环方式移动的画廊,意味着它只是弯曲画廊的第一个和最后一个成员。可能吗?或 horizontal ScrollView
更好的方法来做到这一点?
任何更好的方法将不胜感激..提前致谢。
答案 0 :(得分:2)
我找到了一个解决方案,并使用Custom Gallery
实现了解决方案。我使用了以下布局文件
main.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linear_layout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/gal_bg"
android:orientation="vertical" >
<Gallery
android:id="@+id/horizontallistview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp" />
<!-- android:background="@drawable/gal_overlay" -->
<ImageView
android:layout_width="fill_parent"
android:layout_height="120dp"
android:background="@drawable/gal_overlay" />
</FrameLayout>
它使用一些图像作为FrameLayout
和ImageView
的背景。您将在GitHub上找到完整的项目源代码。
快乐编码..