1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?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:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <com.zhpan.bannerview.BannerViewPager
- android:id="@+id/banner_view"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_180"
- android:layout_margin="@dimen/dp_10"
- app:bvp_indicator_visibility="visible"
- app:bvp_round_corner="@dimen/dp_8" />
- <TextView
- android:id="@+id/tv_page_style"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/dp_10"
- android:layout_marginTop="@dimen/dp_10"
- android:text="@string/text_indicator_style"
- android:textColor="#000000"
- android:textSize="@dimen/sp_18"
- android:textStyle="bold" />
- <RadioGroup
- android:id="@+id/rg_indicator_style"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:padding="@dimen/dp_15">
- <RadioButton
- android:id="@+id/rb_circle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="15dp"
- android:layout_marginBottom="@dimen/dp_10"
- android:text="Circle"
- android:textSize="@dimen/sp_16" />
- <RadioButton
- android:id="@+id/rb_dash"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="15dp"
- android:layout_marginBottom="@dimen/dp_10"
- android:text="Dash"
- android:textSize="@dimen/sp_16" />
- <RadioButton
- android:id="@+id/rb_round_rect"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="15dp"
- android:layout_marginBottom="@dimen/dp_10"
- android:text="ROUND_RECT"
- android:textSize="@dimen/sp_16" />
- <RadioButton
- android:id="@+id/rb_tmall"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="15dp"
- android:layout_marginBottom="@dimen/dp_10"
- android:text="Tmall Indicator Style"
- android:textSize="@dimen/sp_16" />
- </RadioGroup>
- </LinearLayout>
|