Advertisement
Guest User

activity_main.xml

a guest
Sep 5th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:paddingBottom="@dimen/activity_vertical_margin"
  8. android:paddingLeft="@dimen/activity_horizontal_margin"
  9. android:paddingRight="@dimen/activity_horizontal_margin"
  10. android:paddingTop="@dimen/activity_vertical_margin"
  11. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  12. tools:context="com.aaronminijob.minijob.MainActivity"
  13. >
  14.  
  15. <TextView
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:textAppearance="?android:attr/textAppearanceLarge"
  19. android:id="@+id/textView2"
  20. android:layout_alignParentTop="true"
  21. android:layout_centerHorizontal="true"
  22. android:layout_marginTop="86dp" />
  23.  
  24. <ImageButton
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:id="@+id/imageButton"
  28. android:src="@drawable/lecke"
  29. android:layout_alignParentStart="true"
  30. android:layout_alignParentEnd="true"
  31. android:layout_above="@+id/button"
  32. android:layout_alignParentTop="true" />
  33.  
  34. <Button
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:text="----"
  38. android:id="@+id/button"
  39. android:layout_centerVertical="true"
  40. android:layout_centerHorizontal="true" />
  41.  
  42. <ImageButton
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:id="@+id/imageButton2"
  46. android:layout_below="@+id/button"
  47. android:layout_alignParentEnd="true"
  48. android:layout_alignParentStart="true"
  49. android:src="@drawable/lasen" />
  50.  
  51. <FrameLayout
  52. android:layout_width="match_parent"
  53. android:layout_height="match_parent"
  54. android:layout_alignTop="@+id/button"
  55. android:layout_alignEnd="@+id/imageButton2"
  56. android:layout_above="@+id/imageButton2"
  57. android:id="@+id/layout"></FrameLayout>
  58.  
  59. <Button
  60. android:layout_width="wrap_content"
  61. android:layout_height="wrap_content"
  62. android:text="Jobs im umkreis von: 5km"
  63. android:id="@+id/button2"
  64. android:layout_alignParentStart="true"
  65. android:background="@color/transparent"
  66. android:layout_above="@+id/button"
  67. android:layout_alignEnd="@+id/imageButton"
  68. android:textColor="#ffffff" />
  69.  
  70. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement