How to add new view at the top of an existing view in Android?

add view on existing imageview in android

  • I want to cover existing imageview with another view which just has black background and i want its size to be equal to the imageview but the height doesn't work properly That's my code : <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="#000" > <ImageView android:id="@+id/feedImage" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center" android:adjustViewBounds="true" android:scaleType="fitXY" android:src="@drawable/cover" /> <RelativeLayout android:id="@+id/playBackground" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_centerInParent="true" android:background="#75000000" > <ImageView android:id="@+id/playIcon" android:layout_width="110dp" android:layout_height="110dp" android:layout_centerInParent="true" android:adjustViewBounds="true" android:scaleType="fitXY" android:src="@drawable/play" /> </RelativeLayout> </RelativeLayout> That's the result :

  • Answer:

    <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="#000" > <ImageView android:id="@+id/feedImage" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" android:adjustViewBounds="true" android:scaleType="fitXY" android:src="@drawable/cover" /> <RelativeLayout android:id="@+id/playBackground" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_centerInParent="true" android:background="#75000000" > <ImageView android:id="@+id/playIcon" android:layout_width="110dp" android:layout_height="110dp" android:layout_centerInParent="true" android:adjustViewBounds="true" android:scaleType="fitXY" android:src="@drawable/play" /> </RelativeLayout> </FrameLayout>

eng.ahmed at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

in your second ImageView change your layout_height and your layout_width by match_parent value.

Fakher

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.