如何将照片和图像合二为一?

时间:2012-01-26 09:59:50

标签: android image camera

我需要获取一张图片并在顶部叠加一张图片,并能够在Android中记录一个想法的单个图像吗?

所以请帮帮我

(对不起我的英文)

1 个答案:

答案 0 :(得分:0)

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