我正在尝试制作一个scrollview
将拍摄几张图像的风景,我想做的是scroll
它会自动移动,并且当它到达终点时,它会自动从第一张图像重新开始,就像这样
http://sogamoso.org/turismo/turcom/Sogamoso.html,现在我没有更多的代码,只有scrollvew
一些水平的imagebuttons
,如果你能帮我解决这个问题,我将不胜感激。
代码scroll
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal">
<ImageButton
android:id="@+id/imageButton12"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@mipmap/ic_launcher" />
<ImageButton
android:id="@+id/imageButton11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_transporte" />
<ImageButton
android:id="@+id/imageButton10"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_industria" />
<ImageButton
android:id="@+id/imageButton9"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_hoteles" />
<ImageButton
android:id="@+id/imageButton8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_contactanos" />
<ImageButton
android:id="@+id/imageButton7"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_compartir" />
<ImageButton
android:id="@+id/imageButton6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_bar_coffe" />
</LinearLayout>
</HorizontalScrollView>
有 HorizontalScrollView 方法,在其中放置所有文件。
最后我用这个库解决了它
https://github.com/firdausmaulan/GlideSlider