Advertisement
ddkclaudio

Untitled

Jan 2nd, 2013
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.57 KB | None | 0 0
  1. /*camera.xml
  2. */
  3.  
  4.  
  5. <?xml version="1.0" encoding="utf-8"?>
  6. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  7.    android:layout_width="match_parent"
  8.    android:layout_height="match_parent"
  9.     android:orientation = "vertical" >
  10.  <RelativeLayout
  11.        android:layout_width="match_parent"
  12.        android:layout_height="wrap_content" >
  13.  
  14.         <FrameLayout
  15.            android:id="@+id/frameCamera"
  16.            android:layout_width="fill_parent"
  17.            android:layout_height="fill_parent" >
  18.  
  19.         </FrameLayout>
  20.         <ImageView
  21.            android:id="@+id/imageView1"
  22.            android:scaleType="fitXY"
  23.            android:layout_width="fill_parent"
  24.            android:layout_height="wrap_content"
  25.            android:layout_alignParentBottom="true"
  26.            android:src="@drawable/img_rodape" />
  27.  
  28.         <ImageView
  29.            android:id="@+id/btnMedia"
  30.            android:clickable="true"
  31.            android:layout_width="wrap_content"
  32.            android:layout_height="wrap_content"
  33.            android:layout_centerHorizontal="true"
  34.            android:layout_above="@+id/bottomLayout"
  35.            android:src="@drawable/btn_foto" />
  36.        
  37.         <ImageView
  38.            android:id="@+id/btnVoltar"
  39.            android:clickable="true"
  40.            android:layout_width="wrap_content"
  41.            android:layout_height="wrap_content"
  42.            android:layout_alignParentLeft="true"
  43.            android:layout_above="@+id/bottomLayout"
  44.            android:src="@drawable/btn_foto" />
  45.        
  46.         <ImageView
  47.            android:id="@+id/btninerteCamera"
  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.  
  55.         <LinearLayout
  56.            android:id="@+id/bottomLayout"
  57.            android:layout_alignParentBottom="true"
  58.            android:layout_width="wrap_content"
  59.            android:layout_height="13dp"
  60.            android:orientation="vertical" >
  61.         </LinearLayout>
  62.  
  63.         <TextView
  64.            android:id="@+id/textTimer"
  65.            android:layout_alignParentLeft="true"
  66.            android:layout_alignParentTop="true"
  67.            android:layout_width="wrap_content"
  68.            android:layout_height="wrap_content"
  69.            android:layout_margin="10dp"
  70.            android:text="00:00/00:10"
  71.            android:textAppearance="?android:attr/textAppearanceMedium" />
  72.  
  73.         </RelativeLayout>
  74.    
  75.  
  76. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement