|
@@ -6,4 +6,40 @@
|
|
|
android:layout_height="match_parent"
|
|
|
tools:context=".Edit">
|
|
|
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ tools:ignore="MissingConstraint"
|
|
|
+ android:orientation="vertical"
|
|
|
+ >
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/N"
|
|
|
+ style="@style/textstyle"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></EditText>
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/S"
|
|
|
+ style="@style/textstyle"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></EditText>
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/P"
|
|
|
+ style="@style/textstyle"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></EditText>
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/Sub"
|
|
|
+ style="@style/textstyle"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"></EditText>
|
|
|
+ <Button
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Назад"
|
|
|
+ android:onClick="btnBack"
|
|
|
+ ></Button>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|