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.
|
- <?xml version="1.0" encoding="utf-8"?>
-
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- android:paddingBottom="@dimen/activity_vertical_margin">
-
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/tv_editLok_name"
- android:id="@+id/tv_editLok_name"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="43dp" />
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/tv_editLok_adresse"
- android:id="@+id/tv_editLok_adresse"
- android:layout_marginTop="65dp"
- android:layout_below="@+id/tv_editLok_name"
- android:layout_alignLeft="@+id/tv_editLok_name"
- android:layout_alignStart="@+id/tv_editLok_name"
- android:layout_centerHorizontal="true"/>
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:text="@string/tv_editLok_maxspeed"
- android:id="@+id/tv_editLok_maxspeed"
- android:layout_centerVertical="true"
- android:layout_centerHorizontal="true" />
-
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/btn_addlok_save"
- android:id="@+id/btn_editLok_save"
- android:layout_marginTop="63dp"
- android:layout_below="@+id/et_editLok_maxspeed"
- android:layout_centerHorizontal="true" />
-
- <EditText
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/et_editLok_name"
- android:layout_below="@+id/tv_editLok_name"
- android:layout_centerHorizontal="true" />
-
- <EditText
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/et_editLok_adresse"
- android:layout_below="@+id/tv_editLok_adresse"
- android:layout_centerHorizontal="true" />
-
- <EditText
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/et_editLok_maxspeed"
- android:layout_below="@+id/tv_editLok_maxspeed"
- android:layout_centerHorizontal="true" />
-
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/delete_Lok"
- android:id="@+id/btn_editLok_delete"
- android:layout_below="@+id/btn_editLok_save"
- android:layout_centerHorizontal="true" />
-
- </RelativeLayout>
|