12
我在視圖的底部有一個查看傳呼機庫和一個圓形頁面指示器。我想在頁面瀏覽器前面添加頁面指示器,並且如果可能的話就像iphone圖片庫中那樣透明。你有什麼想法如何做到這一點?如何將圓頁面指示器帶到Android的前端
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>
這裏是我的畫廊的新外觀。
你能分享一下imageview的代碼嗎? – kgandroid
@kgandroid Image View位於ViewPager中。沒有什麼特別的,只是全屏的ImageView。 – osayilgan