ビューの下部にビュー ページャー ギャラリーと円形のページ インジケーターがあります。ビュー ページャーの前にページ インジケーターを表示し、可能な場合は 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>
そして、これが私のギャラリーの新しい外観です。