内部视图中的RecyclerView页面指示器

时间:2018-12-13 09:29:43

标签: android android-recyclerview viewpagerindicator

当前,我正在为recyclerview做页面指示器,代码来自here

我成功添加了页面指示器,我的问题是,我希望我的页面指示器位于recyclerview之内

this

添加的是我的xml代码

 <RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp">

<RelativeLayout
    android:id="@+id/rl_background"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:background="@color/colorLightGray">

    <RelativeLayout
        android:id="@+id/rl_like"
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_margin="5dp"
        android:background="#FFF"></RelativeLayout>

    <TextView
        android:id="@+id/tvAnimalName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:layout_alignParentBottom="true"
        android:textSize="12sp"/>
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

您无需为此使用Recycler View。只需使用带有指示器的ViewPager代替

以下是有关如何使用ViewPager以及带有指示器https://www.youtube.com/watch?v=byLKoPgB7yA的此类滑动图像的完整视频