3

我想要如何才能將我的相對佈局中的圖像置於(位於頂層)我的工具欄上(在相同的相對佈局中),而不是在其下方。任何想法 ? 佈局 在工具欄上部分放置圖像

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

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/imageView2" 
     android:src="@drawable/splash" 
     android:adjustViewBounds="true" 
     android:layout_below="@id/my_toolbar" 
     android:gravity="top" 
     android:layout_alignTop="@id/my_toolbar" 
     android:layout_alignParentTop="true" 
     android:layout_centerHorizontal="true"/> 


    <include 
     android:id="@+id/my_toolbar" 
     layout="@layout/my_toolbar" 
     ></include> 

    </RelativeLayout> 
</FrameLayout> 

工具欄

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" 
           android:layout_width="match_parent" 
           android:layout_height="wrap_content" 
           android:minHeight="?attr/actionBarSize" 
           android:theme="@style/ThemeOverlay.AppCompat.Dark" 
           android:background="#7dca2c" 
           android:elevation="4dp" 
    > 

</android.support.v7.widget.Toolbar> 
+0

您可以發佈您的工具欄佈局 – jmateo

+0

剛添加工具欄 – hanoo

回答

-1

你不需要RelativeLayout,你FrameLayout將處理這只是罰款。

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

    <include 
     android:id="@+id/my_toolbar" 
     layout="@layout/my_toolbar"/> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/imageView2" 
     android:src="@drawable/splash" 
     android:adjustViewBounds="true" 
     android:layout_gravity="top|center_horizontally"/> 

</FrameLayout> 

通過具有所包括的佈局與第一子,這將是第一層 - 和ImageView將是第二。將android:layout_gravity="top|center_horizontally"添加到ImageView將在ViewGroup內正確對齊。

+0

的內容我剛纔試過了,它不工作:(,圖像仍然是我的工具欄下。 – hanoo

+0

它應該工作,請告訴我你嘗試過什麼和你收到的結果。 –

相關問題