Advertisement
javajavajava

Untitled

Dec 16th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent" >
  5.  
  6. <TextView
  7. android:id="@+id/textView2"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_alignParentLeft="true"
  11. android:layout_below="@+id/textView1"
  12. android:layout_marginTop="24dp"
  13. android:text="TextView" />
  14.  
  15. <TextView
  16. android:id="@+id/textView3"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_alignParentLeft="true"
  20. android:layout_below="@+id/textView2"
  21. android:layout_marginTop="29dp"
  22. android:gravity="center"
  23. android:text="TextView" />
  24.  
  25. <TextView
  26. android:id="@+id/textView1"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_alignParentLeft="true"
  30. android:layout_alignParentTop="true"
  31. android:layout_marginTop="33dp"
  32. android:text="TextView" />
  33.  
  34. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement