Advertisement
Guest User

Untitled

a guest
Mar 8th, 2012
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.84 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="fill_parent"
  4.    android:layout_height="fill_parent"
  5.    android:orientation="vertical" >
  6. <Button
  7.    android:id="@+id/buttonClear"
  8.    android:layout_width="fill_parent"
  9.    android:layout_height="wrap_content"
  10.    android:layout_weight=".40"
  11.    android:textSize="50sp" />
  12.  
  13. <ImageView
  14.    android:id="@+id/myimage"
  15.    android:layout_width="fill_parent"
  16.    android:layout_height="wrap_content"
  17.    android:layout_weight=".20"
  18.    android:src="@drawable/ic_launcher"
  19.     />
  20.  
  21. <Button
  22.    android:id="@+id/buttonBackspace"
  23.    
  24.    android:layout_width="fill_parent"
  25.    android:layout_height="wrap_content"
  26.    android:layout_weight=".40"
  27.  
  28.    android:textSize="20sp" />
  29. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement