ddkclaudio

Untitled

Jan 14th, 2013
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.41 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:layout_width="match_parent"
  4.    android:layout_height="match_parent"
  5.     android:orientation = "vertical" >
  6.  <RelativeLayout
  7.        android:layout_width="match_parent"
  8.        android:layout_height="wrap_content" >
  9.  
  10.         <FrameLayout
  11.            android:id="@+id/frameCamera"
  12.            android:layout_width="fill_parent"
  13.            android:layout_height="fill_parent" >
  14.  
  15.         </FrameLayout>
  16.         <ImageView
  17.            android:id="@+id/imageView1"
  18.            android:scaleType="fitXY"
  19.            android:layout_width="fill_parent"
  20.            android:layout_height="wrap_content"
  21.            android:layout_alignParentBottom="true"
  22.            android:src="@drawable/img_rodape"
  23.            android:contentDescription ="@string/desc" />
  24.  
  25.         <ImageView
  26.            android:id="@+id/btnCamerafotografar"
  27.            android:clickable="true"
  28.            android:layout_width="wrap_content"
  29.            android:layout_height="wrap_content"
  30.            android:layout_centerHorizontal="true"
  31.            android:layout_above="@+id/bottomLayout"
  32.            android:src="@drawable/btn_foto"
  33.            android:contentDescription ="@string/desc" />
  34.        
  35.         <ImageView
  36.            android:id="@+id/btnCameraFotoVoltar"
  37.            android:clickable="true"
  38.            android:layout_width="wrap_content"
  39.            android:layout_height="wrap_content"
  40.            android:layout_alignParentLeft="true"
  41.            android:layout_above="@+id/bottomLayout"
  42.            android:src="@drawable/btn_foto"
  43.            android:contentDescription ="@string/desc"
  44.             />
  45.        
  46.         <ImageView
  47.            android:id="@+id/btnCameraFotoInverte"
  48.            android:clickable="true"
  49.            android:layout_width="wrap_content"
  50.            android:layout_height="wrap_content"
  51.            android:layout_alignParentRight="true"
  52.            android:layout_alignParentTop="true"
  53.            android:src="@drawable/btn_inverterx"
  54.            android:contentDescription ="@string/desc" />
  55.  
  56.         <LinearLayout
  57.            android:id="@+id/bottomLayout"
  58.            android:layout_alignParentBottom="true"
  59.            android:layout_width="wrap_content"
  60.            android:layout_height="13dp"
  61.            android:orientation="vertical" >
  62.         </LinearLayout>
  63.  
  64.         </RelativeLayout>
  65.    
  66.  
  67. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment