Subversion Repositories Projects

Compare Revisions

Ignore whitespace Rev 211 → Rev 212

/DUBwise/trunk/android/res/layout/connection.xml
0,0 → 1,78
<?xml version="1.0" encoding="utf-8"?>
 
 
 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
 
 
 
 
 
 
 
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Host:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
<EditText android:id="@+id/edit_host"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Port:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<EditText android:id="@+id/edit_port"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
 
 
<CheckBox android:id="@+id/check_autoconn"
android:paddingBottom="24sp"
android:paddingTop="24sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" Auto Connect " />
 
 
<Button android:id="@+id/save_btn"
android:text="Save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
 
<Button android:id="@+id/cancel_btn"
android:text="Cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
 
</ScrollView>
 
 
 
 
 
 
 
/DUBwise/trunk/android/res/layout/motortest.xml
0,0 → 1,151
<?xml version="1.0" encoding="utf-8"?>
 
 
 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
 
 
 
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
 
 
 
<CheckBox android:id="@+id/check_fullspeed"
android:paddingBottom="24sp"
android:paddingTop="24sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Allow Full Speed" />
 
<View
 
android:layout_height="2px"
android:layout_width="fill_parent"
 
android:background="#DDFFDD"
android:layout_marginTop="5dip"
android:layout_marginBottom="5dip"/>
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Front:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_front"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255"
android:focusable="true"
/>
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Back:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_back"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Left:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_left"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Right:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_right"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
 
 
 
<View
 
android:layout_height="2px"
android:layout_width="fill_parent"
 
android:background="#DDFFDD"
android:layout_marginTop="15dip"
android:layout_marginBottom="5dip"/>
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="All:"
android:textAppearance="?android:attr/textAppearanceLarge"
android:focusable="true"
/>
 
<SeekBar android:id="@+id/seek_all"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="255" />
</LinearLayout>
 
</ScrollView>
 
 
 
 
/DUBwise/trunk/android/res/layout/rcdata.xml
0,0 → 1,216
<?xml version="1.0" encoding="utf-8"?>
 
 
 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
 
 
 
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick0:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_0"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 1:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_1"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick2:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_2"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 3:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_3"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 4:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_4"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 5:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_5"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 6:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_6"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 7:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_7"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 8:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_8"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
 
 
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dip"
android:text="Stick 9:"
android:textAppearance="?android:attr/textAppearanceSmall"
android:focusable="true"
/>
 
<ProgressBar android:id="@+id/stick_progress_9"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:max="255"
android:progress="0"
android:secondaryProgress="0" />
</LinearLayout>
 
 
</ScrollView>