var activity

This commit is contained in:
serso
2011-10-02 22:44:11 +04:00
parent f6c20191d7
commit 7fa8eb6f66
5 changed files with 126 additions and 42 deletions

View File

@@ -6,41 +6,52 @@
~ or visit http://se.solovyev.org
-->
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/var_edit"
a:orientation="vertical"
a:layout_width="match_parent"
a:layout_height="match_parent">
<ScrollView xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="match_parent"
a:layout_height="match_parent">
<TextView a:layout_height="match_parent"
a:layout_width="wrap_content"
a:text="Name"/>
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:id="@+id/var_edit"
a:orientation="vertical"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:scrollbars="vertical"
a:scrollbarAlwaysDrawVerticalTrack="true">
<EditText a:id="@+id/var_edit_name"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:textSize="20dp">
</EditText>
<TextView a:layout_height="match_parent"
a:layout_width="wrap_content"
a:padding="6dp"
a:text="@string/c_var_name"/>
<TextView a:layout_height="match_parent"
a:layout_width="wrap_content"
a:text="Value"/>
<EditText a:id="@+id/var_edit_name"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:textSize="20dp">
</EditText>
<EditText a:id="@+id/var_edit_value"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:inputType="number"
a:textSize="20dp">
</EditText>
<TextView a:layout_height="match_parent"
a:layout_width="wrap_content"
a:padding="6dp"
a:text="@string/c_var_value"/>
<TextView a:layout_height="match_parent"
a:layout_width="wrap_content"
a:text="Description"/>
<EditText a:id="@+id/var_edit_value"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:inputType="number"
a:textSize="20dp">
</EditText>
<EditText a:id="@+id/var_edit_description"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:textSize="20dp">
</EditText>
<TextView a:layout_height="match_parent"
a:layout_width="wrap_content"
a:padding="6dp"
a:text="@string/c_var_description"/>
</LinearLayout>
<EditText a:id="@+id/var_edit_description"
a:layout_width="match_parent"
a:layout_height="wrap_content"
a:textSize="20dp">
</EditText>
</LinearLayout>
</ScrollView>