ritzelrechner

Unnamed repository; edit this file 'description' to name the repository.
git clone http://git.code.weiherhei.de/ritzelrechner.git
Log | Files | Refs

calculate.xml (2999B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3 	android:orientation="vertical" android:layout_width="fill_parent"
      4 	android:layout_height="fill_parent" android:padding="20sp">
      5 
      6 	<LinearLayout android:orientation="horizontal"
      7 		android:layout_width="fill_parent" android:layout_height="wrap_content">
      8 		<TextView android:text="@string/zaehne_vorne"
      9 			android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
     10 		<TextView android:text=": " android:layout_width="wrap_content"
     11 			android:layout_height="wrap_content"></TextView>
     12 		<TextView android:text="test" android:id="@+id/text_zaehne_vorne"
     13 			android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
     14 	</LinearLayout>
     15 	<SeekBar android:max="31" android:progress="26"
     16 		android:id="@+id/seek_anzahl_zaehne_vorne" android:layout_width="fill_parent"
     17 		android:layout_height="wrap_content"></SeekBar>
     18 
     19 	<LinearLayout android:orientation="horizontal"
     20 		android:layout_width="fill_parent" android:layout_height="wrap_content">
     21 		<TextView android:text="@string/zaehne_hinten"
     22 			android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
     23 		<TextView android:text=": " android:layout_width="wrap_content"
     24 			android:layout_height="wrap_content"></TextView>
     25 		<TextView android:text="" android:id="@+id/text_zaehne_hinten"
     26 			android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
     27 	</LinearLayout>
     28 	<SeekBar android:max="32" android:progress="3"
     29 		android:id="@+id/seek_anzahl_zaehne_hinten" android:layout_width="fill_parent"
     30 		android:contentDescription="@string/zaehne_hinten"
     31 		android:layout_height="wrap_content"></SeekBar>
     32 
     33 	<LinearLayout android:orientation="horizontal"
     34 		android:layout_width="fill_parent" android:layout_height="wrap_content">
     35 		<TextView android:text="@string/trittfrequenz"
     36 			android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
     37 		<TextView android:text=": " android:layout_width="wrap_content"
     38 			android:layout_height="wrap_content"></TextView>
     39 		<TextView android:text="" android:id="@+id/text_trittfrequenz"
     40 			android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
     41 		<TextView android:text=" " android:layout_width="wrap_content"
     42 			android:layout_height="wrap_content"></TextView>
     43 		<TextView android:text="@string/umin" android:layout_width="wrap_content"
     44 			android:layout_height="wrap_content"></TextView>
     45 	</LinearLayout>
     46 	<SeekBar android:max="110" android:progress="45"
     47 		android:id="@+id/seek_trittfrequenz" android:layout_width="fill_parent"
     48 		android:contentDescription="@string/trittfrequenz"
     49 		android:layout_height="wrap_content"></SeekBar>
     50 
     51 	<TextView android:text="" android:textSize="50sp"
     52 		android:gravity="center_horizontal" android:id="@+id/geschwindigkeit"
     53 		android:layout_width="fill_parent" android:layout_height="wrap_content"></TextView>
     54 
     55 </LinearLayout>