ビューページャーインジケーターを表示するために、Jake Wharton の例を使用しています。 www.viewpagerindicator.com
スナップ サークル インジケーターを使用しています。
円の幅を広げる方法を誰か教えてください。
どのパラメーターを変更する必要がありますか?
ビューページャーインジケーターを表示するために、Jake Wharton の例を使用しています。 www.viewpagerindicator.com
スナップ サークル インジケーターを使用しています。
円の幅を広げる方法を誰か教えてください。
どのパラメーターを変更する必要がありますか?
「threeRadius」パラメーターをより高い値に増やす必要があります。ありがとう。
すべてのパラメーターはファイル res/values/vpi_attrs.xml にあります。指定された CirclePageIndicator に関連付けられたスタイル:
<!-- Radius of the circles. This is also the spacing between circles. -->
<attr name="radius" format="dimension" />
2 つの円の間のギャップを変更することはできません。CirclePageIndicator をサブクラス化する必要があります。
電話CirclePageIndicator.setRadius()
Use custom property gapWidth
<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/indicator"
android:padding="@dimen/activity_padding"
android:layout_gravity="center_horizontal|bottom"
android:layout_margin="@dimen/tutorial_indicator_margin"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:background="#00000000"
app:gapWidth="24dp"/>
Don't forget to add xmlns:app="http://schemas.android.com/apk/res-auto"
to your parent layout.