如何在附加的图像上叠加相机?

时间:2018-01-04 11:58:50

标签: android

我有一个应用程序,如果任何人enter image description here知道任何库或任何其他解决方案,我希望为此问题附加用户个人资料的imageview,请告诉我。

1 个答案:

答案 0 :(得分:0)

这称为锚点视图。使用FrameLayout执行此操作的方法。

<FrameLayout
    android:id="@+id/frameImage"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerInParent="true">

    <ImageView
        android:id="@+id/img_ProfilePic"
        android:layout_width="80dp"
        android:layout_height="80dp"
        android:layout_margin="10dp"
        android:src="@mipmap/ic_launcher"/>

    <ImageView
        android:id="@+id/img_Camera"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_gravity="right|bottom"
        android:src="@mipmap/ic_launcher"
        />
</FrameLayout>