Android App für SRCP gesteuerte Modelleisenbahnen
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

68 lignes
2.4KB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent" android:layout_height="match_parent">
  4. <TextView
  5. android:layout_width="wrap_content"
  6. android:layout_height="wrap_content"
  7. android:text="@string/tv_addlok_name"
  8. android:id="@+id/tv_addlok_name"
  9. android:layout_alignParentTop="true"
  10. android:layout_centerHorizontal="true"
  11. android:layout_marginTop="39dp"
  12. android:textSize="20sp"/>
  13. <TextView
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:text="@string/tv_addlok_adresse"
  17. android:id="@+id/tv_addlok_adresse"
  18. android:layout_marginTop="88dp"
  19. android:layout_below="@+id/tv_addlok_name"
  20. android:layout_centerHorizontal="true"
  21. android:textSize="20sp"/>
  22. <TextView
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:text="@string/tv_addlok_maxspeed"
  26. android:id="@+id/tv_addlok_maxspeed"
  27. android:layout_centerVertical="true"
  28. android:layout_centerHorizontal="true"
  29. android:textSize="20sp"/>
  30. <EditText
  31. android:layout_width="wrap_content"
  32. android:layout_height="wrap_content"
  33. android:id="@+id/et_addlok_name"
  34. android:layout_below="@+id/tv_addlok_name"
  35. android:layout_centerHorizontal="true" />
  36. <EditText
  37. android:layout_width="wrap_content"
  38. android:layout_height="wrap_content"
  39. android:id="@+id/et_addlok_adresse"
  40. android:layout_below="@+id/tv_addlok_adresse"
  41. android:layout_centerHorizontal="true"
  42. android:inputType="phone"/>
  43. <EditText
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:id="@+id/et_addlok_maxspeed"
  47. android:layout_below="@+id/tv_addlok_maxspeed"
  48. android:layout_centerHorizontal="true"
  49. android:text="@string/et_addlok_maxspeed"
  50. android:inputType="phone"/>
  51. <Button
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:text="@string/btn_addlok_save"
  55. android:id="@+id/btn_addlok_save"
  56. android:layout_alignParentBottom="true"
  57. android:layout_centerHorizontal="true"
  58. android:layout_marginBottom="73dp" />
  59. </RelativeLayout>