如何在Android中将Circle Page Indicator引入前端

时间:2012-05-29 07:23:39

标签: android android-viewpager indicator

我在视图底部有一个视图寻呼器库和一个圆形页面指示器。我想将页面指示器放在视图寻呼机的前面,如果它可以像在iphone图像库中那样可以使它透明。你知道怎么做吗?

enter image description here

SOLUTION:

以下是xml代码作为解决方案。感谢@sanna

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000">


<android.support.v4.view.ViewPager
    android:id="@+id/gallery_view"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    />

<com.viewpagerindicator.CirclePageIndicator
    android:id="@+id/indicator"
    android:padding="10dip"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:layout_alignParentBottom="true"
    />
</RelativeLayout>

这是我画廊的新面貌。

enter image description here

1 个答案:

答案 0 :(得分:18)

我会先使用RelativeLayout和Pager覆盖整个视图,然后使用parentAlignBottom = true添加指标视图。