Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/RelativeLayout1"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent" >
  5.  
  6.  
  7. <TextView
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_alignParentRight="true"
  11. android:layout_alignParentTop="true"
  12. android:text="Click for Images" />
  13.  
  14. <ImageView
  15. android:id="@+id/imageSlide"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_alignParentLeft="true"
  19. android:layout_alignParentRight="true"
  20. android:layout_below="@+id/textView1"
  21. android:layout_marginTop="20dp"
  22. android:src="@drawable/lightscph" />
  23.  
  24. <ImageButton
  25. android:id="@+id/NavImage"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:layout_alignParentBottom="true"
  29. android:layout_alignParentRight="true"
  30. android:src="@drawable/google_maps_navigation" />
  31.  
  32. <TextView
  33. android:id="@+id/textWebPage"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:layout_above="@+id/textView5"
  37. android:layout_alignParentLeft="true"
  38. android:text="Click for tivoli Website"
  39. android:textColor="#FF0000" />
  40.  
  41. <TextView
  42. android:id="@+id/textView5"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_alignParentBottom="true"
  46. android:layout_alignParentLeft="true"
  47. android:layout_marginBottom="14dp"
  48. android:text="Navigate for location" />
  49.  
  50.  
  51. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement