如何将照片和图像结合在一起



我需要获得一张照片,并在上面叠加一张图像,然后能够在Android中记录一个想法的单个图像?

所以请帮我

(对不起我的英语)

在xml 中使用此

 <RelativeLayout
    android:id="@+id/item"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"            
        android:background="@drawable/image1" />
    <ImageView
        android:id="@+id/ic_launcer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"             
        android:background="@drawable/image2" />
 </RelativeLayout>

最新更新