1234567891011121314151617181920212223242526272829 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:id="@+id/activity_main"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <com.zhpan.bannerview.view.BannerViewPager
- android:id="@+id/viewpager"
- android:layout_width="match_parent"
- android:layout_height="150dp"
- android:layout_margin="10dp"
- app:indicator_gravity="end"
- app:indicator_radius="6dp"
- app:interval="5000" />
- <com.zhpan.bannerview.view.BannerViewPager
- android:id="@+id/viewpager2"
- android:layout_width="match_parent"
- android:layout_height="150dp"
- android:layout_margin="10dp" />
- <com.zhpan.bannerview.view.BannerViewPager
- android:id="@+id/viewpager3"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="10dp" />
- </LinearLayout>
|