Advertisement
minafaw3

s17

Jan 25th, 2016
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 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:orientation="vertical" android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <RelativeLayout
  6. android:id="@+id/relativelayout2"
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:layout_below="@+id/headerlayout"
  10. android:layout_marginLeft="25dp">
  11.  
  12.  
  13.  
  14. <TextView
  15. android:id="@+id/textview"
  16. android:layout_width="match_parent"
  17. android:layout_height="wrap_content"
  18. android:layout_marginTop="10dp"
  19. android:layout_alignTop="@+id/acilocsmall"
  20. android:layout_marginLeft="5dp"
  21. android:layout_toEndOf="@+id/acilocsmall"
  22. android:layout_toRightOf="@+id/acilocsmall"
  23. android:gravity="center_horizontal"
  24. android:text="@string/slide17supertitle"
  25. android:textColor="@color/text_color"
  26. android:textSize="35sp"
  27. android:textStyle="bold" />
  28. </RelativeLayout>
  29.  
  30. <TextView
  31. android:id="@+id/subtext"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:layout_below="@+id/relativelayout2"
  35. android:layout_marginTop="10dp"
  36. android:layout_centerHorizontal="true"
  37. android:layout_gravity="center"
  38. android:textSize="35dp"
  39. android:textColor="@color/text_color"
  40. android:text="@string/slide17title"/>
  41.  
  42. <FrameLayout
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_gravity="center"
  46. >
  47.  
  48.  
  49.  
  50. <ImageView
  51. android:layout_width="wrap_content"
  52. android:layout_height="wrap_content"
  53.  
  54. android:adjustViewBounds="true"
  55. android:scaleType="centerInside"
  56. android:src="@drawable/s17background"/>
  57.  
  58. <ImageView
  59. android:layout_width="200dp"
  60. android:layout_height="200dp"
  61. android:layout_gravity="right|top"
  62. android:src="@drawable/aprrove_badge"/>
  63.  
  64. </FrameLayout>
  65.  
  66.  
  67.  
  68.  
  69. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement