2015-04-27 182 views
3

我想有一個transparent toolbarAndroid的透明工具欄

,這樣它將對的ImageView其頂部設置如下顯示

<ImageView 

    android:layout_width="fill_parent" 
    android:layout_height="0px" 
    android:layout_weight="8" 
    android:scaleType="center" 
    android:id="@+id/imageView" 
    android:layout_alignParentTop="true" 
    android:layout_alignParentLeft="true" 
    android:layout_alignParentStart="true" 
    android:elevation="0dp" 
    /> 

插圖(藍色區域爲ImageView):

enter image description here

所以,它是透明的,但它推動了ImageView,而不是在它之上。

我也試過使用android:elevation,但它沒有幫助。

回答

3

使用框架佈局

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 

    // Your imageview 

    <ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"/> 

    //your toolbar 


</FrameLayout> 

這應該有助於

4

工具欄只是ViewGroup。所以考慮製作像相對佈局的佈局。 在相對佈局中,您有這樣的順序:佈局代碼中的較低位置,則該視圖將被視爲佈局的最高層。因此,請按照正確的順序放置您的視圖,您將獲得理想的結果。之前爲我工作過很多次。

+0

燁偶數幀佈局也爲這部作品PLUS1。 – mcd

相關問題