Android App für SRCP gesteuerte Modelleisenbahnen
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

82 рядки
3.0KB

  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"
  4. android:layout_height="match_parent"
  5. android:paddingLeft="@dimen/activity_horizontal_margin"
  6. android:paddingRight="@dimen/activity_horizontal_margin"
  7. android:paddingTop="@dimen/activity_vertical_margin"
  8. android:paddingBottom="@dimen/activity_vertical_margin">
  9. <TextView
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:textAppearance="?android:attr/textAppearanceLarge"
  13. android:text="@string/tv_editLok_name"
  14. android:id="@+id/tv_editLok_name"
  15. android:layout_alignParentTop="true"
  16. android:layout_centerHorizontal="true"
  17. android:layout_marginTop="43dp" />
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:textAppearance="?android:attr/textAppearanceLarge"
  22. android:text="@string/tv_editLok_adresse"
  23. android:id="@+id/tv_editLok_adresse"
  24. android:layout_marginTop="65dp"
  25. android:layout_below="@+id/tv_editLok_name"
  26. android:layout_alignLeft="@+id/tv_editLok_name"
  27. android:layout_alignStart="@+id/tv_editLok_name"
  28. android:layout_centerHorizontal="true"/>
  29. <TextView
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:textAppearance="?android:attr/textAppearanceLarge"
  33. android:text="@string/tv_editLok_maxspeed"
  34. android:id="@+id/tv_editLok_maxspeed"
  35. android:layout_centerVertical="true"
  36. android:layout_centerHorizontal="true" />
  37. <Button
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:text="@string/btn_addlok_save"
  41. android:id="@+id/btn_editLok_save"
  42. android:layout_marginTop="63dp"
  43. android:layout_below="@+id/et_editLok_maxspeed"
  44. android:layout_centerHorizontal="true" />
  45. <EditText
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:id="@+id/et_editLok_name"
  49. android:layout_below="@+id/tv_editLok_name"
  50. android:layout_centerHorizontal="true" />
  51. <EditText
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:id="@+id/et_editLok_adresse"
  55. android:layout_below="@+id/tv_editLok_adresse"
  56. android:layout_centerHorizontal="true" />
  57. <EditText
  58. android:layout_width="wrap_content"
  59. android:layout_height="wrap_content"
  60. android:id="@+id/et_editLok_maxspeed"
  61. android:layout_below="@+id/tv_editLok_maxspeed"
  62. android:layout_centerHorizontal="true" />
  63. <Button
  64. android:layout_width="wrap_content"
  65. android:layout_height="wrap_content"
  66. android:text="@string/delete_Lok"
  67. android:id="@+id/btn_editLok_delete"
  68. android:layout_below="@+id/btn_editLok_save"
  69. android:layout_centerHorizontal="true" />
  70. </RelativeLayout>