android – Viewpager Relex Circle指示灯颜色

前端之家收集整理的这篇文章主要介绍了android – Viewpager Relex Circle指示灯颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
viewpager指示器的默认颜色为白色.
github中的relex viewpager指示器中,
它不包括如何更改指标的颜色.
可能吗?
<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <me.relex.circleindicator.CircleIndicator
                android:id="@+id/pagerIndicator"
                app:ci_width="10dp"
                app:ci_height="10dp"
                android:layout_width="match_parent"
                android:layout_height="36dp"
                android:layout_gravity="bottom"
                android:layout_marginBottom="8dp" />
        </LinearLayout>

解决方法

<me.relex.circleindicator.CircleIndicator
        android:id="@+id/pagerIndicator"
        app:ci_width="10dp"
        app:ci_height="10dp"
        app:ci_drawable="@drawable/circleindicator_round"
        android:layout_width="match_parent"
        android:layout_height="36dp"
        android:layout_gravity="bottom"
        android:layout_marginBottom="8dp" />

我不在乎你做什么填充或保证金

但创建一个可绘制的XML文件添加这些代码

<?xml version="1.0" encoding="utf-8"?>
  <shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/colorAccent"/>
    <corners android:radius="10dp"/>
  </shape>

把它称之为你想要的
但是用

`app:ci_drawable="@drawable/circleindicator_round"`

为我工作

原文链接:https://www.f2er.com/android/314246.html

猜你在找的Android相关文章