如何将两个图像放入背景的两个透明部分?

时间:2017-11-26 22:47:07

标签: android android-layout android-imageview android-photos android-photoview

我正在尝试使用2张图片创建照片拼贴。我有一个背景图像,2个透明部分除以边框。我想将两个不同的图像放入这两个部分,图像可以移动,拖动和缩放。但是,1个图像应该保留在1个透明部分中,并且它不应该移动到另一个透明部分。第二张图片也是如此。我遇到的问题是,当我放大时,图像可能会在透明部分结束。

这是一张示例照片。绿色部分是背景(它将是实时应用中的真实图像),2个白色部分表示png文件中的透明。我想在两个白色圆圈中分别放置1张图像。 enter image description here

这是代码

    <ImageView
        android:id="@+id/imgPhoto"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <ImageView
        android:id="@+id/imgPhoto2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

    <ImageView
        android:id="@+id/imgBackground"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitXY"
        />

0 个答案:

没有答案