Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 4th, 2012  |  syntax: None  |  size: 0.58 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. how to combine photo and image in one?
  2. <RelativeLayout
  3.     android:id="@+id/item"
  4.     android:layout_width="fill_parent"
  5.     android:layout_height="fill_parent" >
  6.  
  7.     <ImageView
  8.         android:id="@+id/image"
  9.         android:layout_width="wrap_content"
  10.         android:layout_height="wrap_content"            
  11.         android:background="@drawable/image1" />
  12.  
  13.     <ImageView
  14.         android:id="@+id/ic_launcer"
  15.         android:layout_width="wrap_content"
  16.         android:layout_height="wrap_content"            
  17.         android:background="@drawable/image2" />
  18.  
  19.  </RelativeLayout>