在android中的现有imageview上添加视图

时间:2015-04-19 14:55:51

标签: android imageview cover

我想用另一个只有黑色背景的视图覆盖现有的imageview,我希望它的大小与imageview相同,但高度不能正常工作

这是我的代码:

<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>

结果就是这样:

enter image description here

2 个答案:

答案 0 :(得分:1)

<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>

答案 1 :(得分:0)

在您的第二个ImageView更改 layout_height ,将 layout_width 更改为 match_parent 值。