12

ビューの下部にビュー ページャー ギャラリーと円形のページ インジケーターがあります。ビュー ページャーの前にページ インジケーターを表示し、可能な場合は iPhone の画像ギャラリーのように透明にしたいと考えています。それを行う方法はありますか?

ここに画像の説明を入力

解決:

これが解決策としての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>

そして、これが私のギャラリーの新しい外観です。

ここに画像の説明を入力

4

1 に答える 1

18

最初にビュー全体をカバーする Pager で RelativeLayout を使用してから、parentAlignBottom=true でインジケーター ビューを追加します。

于 2012-05-29T07:32:28.227 に答える