xml 重叠两个视图,使一张图在另一张图的上面。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 重叠两个视图,使一张图在另一张图的上面。相关的知识,希望对你有一定的参考价值。

myView.bringToFront();
myView.invalidate(); 
<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">

    <!-- Back view should be first to be drawn first! -->
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"
        android:src="@drawable/back_image_beach"
        />

    <!-- Front view should be last to be drawn on top! -->
    <!-- Use `centerInParent` to center the image in the container -->
    <!-- Use `elevation` to ensure placement on top (not required) -->
    <ImageView
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:elevation="10dp"
        android:layout_centerInParent="true"
        android:scaleType="fitXY"
        android:src="@drawable/airbnb_logo_front"
        />
</RelativeLayout>

以上是关于xml 重叠两个视图,使一张图在另一张图的上面。的主要内容,如果未能解决你的问题,请参考以下文章

java 重叠两个视图,使一张图在另一张图的上面。

Android 画廊怎么让第一张图在最左边

5-20 将一个图层作为另一个图层的蒙版

opencv如何让两张图在下方

用CSS在不破坏一张图的内容的情况下 怎么把它放到比它小的div中

python在一张图上画多个线条