Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 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. tools:context=".MainActivity">
  8.  
  9. <Button
  10. android:id="@+id/przycisk"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:text="Odśwież" />
  14.  
  15. <TextView
  16. android:id="@+id/pole"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:layout_below="@id/przycisk"
  20. android:textColor="@color/colorPrimaryDark"
  21. android:textSize="10pt"
  22. />
  23.  
  24. <TextView
  25. android:id="@+id/pole2"
  26. android:layout_width="match_parent"
  27. android:layout_height="wrap_content"
  28. android:layout_below="@id/przycisk"
  29. android:layout_marginTop="437dp" />
  30.  
  31. <Spinner
  32. android:id="@+id/lista"
  33. android:layout_width="match_parent"
  34. android:layout_height="wrap_content"
  35. android:layout_alignParentBottom="true"
  36. android:layout_alignParentRight="true"/>
  37.  
  38. <TextView
  39. android:id="@+id/pole3"
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:layout_below="@id/przycisk"
  43. android:layout_marginTop="300dp" />
  44.  
  45.  
  46. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement