[XML]<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rootlayout"
    android_layout_height="fill_parent"
    android:layout_width="fill_parent">
	
	<!-- the name -->
	<TextView
	    android:id="@+id/name"
	    android:layout_height="wrap_content"
	    android:layout_width="wrap_content"
	    android:text="@string/sensor_name" />
	
	<TextView
	    android:id="@+id/namecontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/name"
	    android:text="@string/default_name" />
	
	<!-- the version -->
	<TextView
	    android:id="@+id/version"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_below="@id/name"
	    android:text="@string/sensor_version" />
	
	<TextView
	    android:id="@+id/versioncontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/version" />
	
	<!--  the vendor -->
	<TextView
	    android:id="@+id/vendor"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_below="@id/version"
	    android:text="@string/sensor_vendor" />
	
	<TextView
	    android:id="@+id/vendorcontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/vendor" />
	
	<!-- the type -->
	<TextView
	    android:id="@+id/type"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_below="@id/vendor"
	    android:text="@string/sensor_type" />
	
	<TextView
	    android:id="@+id/typecontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/type" />
	
	<!-- the battery power -->
	<TextView
	    android:id="@+id/power"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_below="@id/type"
	    android:text="@string/sensor_power" />
	
	<TextView
	    android:id="@+id/powercontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/power" />
	
	<!-- the resolution -->
	<TextView
	    android:id="@+id/resolution"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_below="@id/power"
	    android:text="@string/sensor_resolution" />
	
	<TextView
	    android:id="@+id/resolutioncontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/resolution" />
	
	<!-- the maximum range -->
	<TextView
	    android:id="@+id/range"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_below="@id/resolution"
	    android:text="@string/sensor_range" />
	
	<TextView
	    android:id="@+id/rangecontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/range" />
	
	<!-- the minimum delay -->
	<TextView
	    android:id="@+id/delay"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_below="@id/range"
	    android:text="@string/sensor_delay" />
	
	<TextView
	    android:id="@+id/delaycontent"
	    android:layout_height="wrap_content"
	    android:layout_width="fill_parent"
	    android:layout_toRightOf="@id/delay" />
	
	<!-- the button to return to the sensor overview -->
	<Button 
	    android:id="@+id/back"
	    android:layout_height="wrap_content"
	    android:layout_width="wrap_content"
	    android:layout_below="@id/delay"
	    android:text="@string/back_text" />
</RelativeLayout>[/XML]
Danke für Dein Interesse und Deine Hilfsbereitschaft! 
