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
Other answers
in your second ImageView change your layout_height and your layout_width by match_parent value.
Fakher
Related Q & A:
- How to animate a View with Translate Animation in Android?Best solution by Stack Overflow
- How to add a colored border on the Imageview?Best solution by Stack Overflow
- How to add a list to the existing list jQuery?Best solution by designchemical.com
- How do I add a new e-mail account to my existing account?Best solution by answers.yahoo.com
- How do I add a new stock to an existing portfolio?Best solution by chegg.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.