|
|
@@ -1,52 +1,52 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" |
|
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent" |
|
|
|
tools:context=".MainActivity"> |
|
|
|
|
|
|
|
|
|
|
|
<Button |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:id="@+id/btnEarthquake" |
|
|
|
android:text="@string/generate_earthquake" |
|
|
|
android:layout_centerVertical="true" |
|
|
|
android:layout_centerHorizontal="true" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:id="@+id/btnSensor" |
|
|
|
android:text="@string/be_a_sensor" |
|
|
|
android:layout_centerHorizontal="true" |
|
|
|
android:layout_below="@id/btnEarthquake"/> |
|
|
|
|
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/buttonDatenBankMuster" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_below="@+id/btnSensor" |
|
|
|
android:layout_centerHorizontal="true" |
|
|
|
android:layout_marginTop="50dp" |
|
|
|
android:text="@string/start_mit_vordefinierter_db" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/buttonDatenBankLeeren" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_below="@+id/buttonDatenBankMuster" |
|
|
|
android:layout_centerHorizontal="true" |
|
|
|
android:text="@string/start_mit_leeren_db" /> |
|
|
|
|
|
|
|
<Button |
|
|
|
android:id="@+id/buttonReset" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_below="@+id/buttonDatenBankLeeren" |
|
|
|
android:layout_centerHorizontal="true" |
|
|
|
android:text="@string/weitermachen_buttonreset" /> |
|
|
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".MainActivity">
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/btnEarthquake"
|
|
|
|
android:text="@string/generate_earthquake"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_centerHorizontal="true" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/btnSensor"
|
|
|
|
android:text="@string/be_a_sensor"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_below="@id/btnEarthquake"/>
|
|
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonDatenBankMuster"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/btnSensor"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:text="@string/start_mit_vordefinierter_db" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonDatenBankLeeren"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/buttonDatenBankMuster"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:text="@string/start_mit_leeren_db" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonReset"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@+id/buttonDatenBankLeeren"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:text="@string/weitermachen_buttonreset" />
|
|
|
|
|
|
|
|
</RelativeLayout> |