|
|
@@ -32,14 +32,47 @@
|
|
|
app:btn_bg="@drawable/common_btn_red_bg"
|
|
|
app:btn_name="@string/submit" />
|
|
|
|
|
|
- <RelativeLayout
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
android:layout_above="@id/cb_back"
|
|
|
android:layout_below="@id/tb"
|
|
|
android:layout_marginVertical="@dimen/common_spacing"
|
|
|
android:background="@drawable/item_rv_technology_sop_bg_normal"
|
|
|
- android:padding="@dimen/common_spacing_small">
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:padding="@dimen/common_spacing">
|
|
|
|
|
|
- </RelativeLayout>
|
|
|
+ <com.grkj.iscs_mc.view.widget.SelectableInput
|
|
|
+ android:id="@+id/ci_type"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing"
|
|
|
+ app:edit_width="200dp"
|
|
|
+ app:mode="select"
|
|
|
+ app:name="@string/exception_report_type"
|
|
|
+ app:required="true"
|
|
|
+ app:text_size="@dimen/common_text_size" />
|
|
|
+
|
|
|
+ <com.grkj.iscs_mc.view.widget.SelectableInput
|
|
|
+ android:id="@+id/ci_level"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing"
|
|
|
+ app:edit_width="200dp"
|
|
|
+ app:mode="select"
|
|
|
+ app:name="@string/exception_report_level"
|
|
|
+ app:required="true"
|
|
|
+ app:text_size="@dimen/common_text_size" />
|
|
|
+
|
|
|
+ <com.grkj.iscs_mc.view.widget.SelectableInput
|
|
|
+ android:id="@+id/ci_description"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginVertical="@dimen/common_spacing"
|
|
|
+ app:edit_height="200dp"
|
|
|
+ app:mode="input"
|
|
|
+ app:name="@string/exception_report_description"
|
|
|
+ app:required="false"
|
|
|
+ app:text_size="@dimen/common_text_size" />
|
|
|
+ </LinearLayout>
|
|
|
</RelativeLayout>
|