-1
我有一個片段(實際上是一個SupportMapFragment),我想將一個ImageView放在地圖的一個角落上,但不包括所有地圖片段,只是一點點。我的佈局:ImageView在一個不可見的片段上
<ImageView
android:layout_width="60dp"
android:layout_height="60dp"
android:id="@+id/imagenTick"
android:background="@color/componente_boton_base_seleccionar_defecto"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
android:src="@drawable/tick"
android:clickable="false"
android:contentDescription="ImagenTick"
android:layout_alignTop="@+id/mapfragment"
android:layout_alignLeft="@+id/mapfragment"
android:layout_alignStart="@+id/mapfragment"/>
<fragment
android:layout_width="match_parent"
android:layout_height="150dp"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/mapfragment" />
現在,ImageView位於mapFragment後面,並且不可見。我希望它可見,但無法找到告訴Android Studio的方式,我希望它通過地圖顯示,而不是後面。
有什麼辦法可以達到這個目的嗎?
謝謝。
嘗試更改順序。首先放入片段,然後放入ImageView。使用RelativeLayout時,最後一個元素應該在最上面。 –
工作。如果你把它放在一個答案中,我會upvote你。謝謝! – Fustigador