2012-05-29 43 views
12

我在視圖的底部有一個查看傳呼機庫和一個圓形頁面指示器。我想在頁面瀏覽器前面添加頁面指示器,並且如果可能的話就像iphone圖片庫中那樣透明。你有什麼想法如何做到這一點?如何將圓頁面指示器帶到Android的前端

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

+0

你能分享一下imageview的代碼嗎? – kgandroid

+0

@kgandroid Image View位於ViewPager中。沒有什麼特別的,只是全屏的ImageView。 – osayilgan

回答

17

我會使用的RelativeLayout與尋呼機首先覆蓋整個視圖,然後添加具有parentAlignBottom =真正的指標視圖。

+1

感謝您的回答。它工作得很好。您也可以將我的編輯視爲解決方案。 – osayilgan