var activity
This commit is contained in:
@@ -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>
|
||||
|
@@ -37,4 +37,14 @@
|
||||
<string name="c_add">Add</string>
|
||||
<string name="c_cancel">Cancel</string>
|
||||
<string name="c_save">Save</string>
|
||||
<string name="c_remove">Remove</string>
|
||||
<string name="c_yes">Yes</string>
|
||||
<string name="c_no">No</string>
|
||||
<string name="c_var_removal_confirmation">Removal confirmation</string>
|
||||
<string name="c_var_removal_confirmation_question">Do you really want to delete \'%s\' variable?</string>
|
||||
<string name="c_var_name">Name</string>
|
||||
<string name="c_var_value">value</string>
|
||||
<string name="c_var_description">Description</string>
|
||||
<string name="c_var_create_var">Create variable</string>
|
||||
<string name="c_var_edit_var">Edit variable</string>
|
||||
</resources>
|
||||
|
Reference in New Issue
Block a user