|
@@ -0,0 +1,205 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:focusable="true"
|
|
|
+ android:focusableInTouchMode="true">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent">
|
|
|
+
|
|
|
+ <android.support.v7.widget.AppCompatImageView
|
|
|
+ android:id="@+id/setting_back"
|
|
|
+ android:layout_width="@dimen/dp_35"
|
|
|
+ android:layout_height="@dimen/dp_35"
|
|
|
+ android:layout_marginStart="@dimen/dp_26"
|
|
|
+ android:layout_marginTop="@dimen/dp_26"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:srcCompat="@drawable/vector_btn_back" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ tools:ignore="MissingConstraints">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="1500dp"
|
|
|
+ android:layout_height="@dimen/dp_50"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginTop="@dimen/dp_10"
|
|
|
+ android:gravity="right"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="@dimen/dp_50"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxWidth="400dp"
|
|
|
+ android:text="Nayax Port"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+ <android.support.v7.widget.AppCompatEditText
|
|
|
+ android:id="@+id/et_nayax_port"
|
|
|
+ android:layout_width="@dimen/dp_200"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/nayax_port_save"
|
|
|
+ android:layout_width="@dimen/dp_150"
|
|
|
+ android:layout_height="@dimen/dp_40"
|
|
|
+ android:background="@drawable/bg_config_confirm"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/confirm_revision"
|
|
|
+ android:textColor="#FE5DBB"
|
|
|
+ android:textSize="@dimen/sp_18" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="1500dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginTop="@dimen/dp_10"
|
|
|
+ android:gravity="right"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/phone_tip"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="@dimen/dp_50"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxWidth="400dp"
|
|
|
+ android:text="MDB Port"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+ <android.support.v7.widget.AppCompatEditText
|
|
|
+ android:id="@+id/et_mdb_port"
|
|
|
+ android:layout_width="@dimen/dp_200"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/mdb_port_save"
|
|
|
+ android:layout_width="@dimen/dp_150"
|
|
|
+ android:layout_height="@dimen/dp_40"
|
|
|
+ android:background="@drawable/bg_config_confirm"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/confirm_revision"
|
|
|
+ android:textColor="#FE5DBB"
|
|
|
+ android:textSize="@dimen/sp_18" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="1500dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginTop="@dimen/dp_10"
|
|
|
+ android:gravity="right"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="@dimen/dp_50"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxWidth="400dp"
|
|
|
+ android:text="YanLong Port"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+ <android.support.v7.widget.AppCompatEditText
|
|
|
+ android:id="@+id/et_yanlong_port"
|
|
|
+ android:layout_width="@dimen/dp_200"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/yanlong_port_save"
|
|
|
+ android:layout_width="@dimen/dp_150"
|
|
|
+ android:layout_height="@dimen/dp_40"
|
|
|
+ android:background="@drawable/bg_config_confirm"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/confirm_revision"
|
|
|
+ android:textColor="#FE5DBB"
|
|
|
+ android:textSize="@dimen/sp_18" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="1500dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginTop="@dimen/dp_10"
|
|
|
+ android:gravity="right"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="@dimen/dp_50"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:gravity="center"
|
|
|
+ android:maxWidth="400dp"
|
|
|
+ android:text="ICT Port"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+ <android.support.v7.widget.AppCompatEditText
|
|
|
+ android:id="@+id/et_ict_port"
|
|
|
+ android:layout_width="@dimen/dp_200"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:textColor="@color/colorPrimaryDark"
|
|
|
+ android:textSize="@dimen/sp_12"
|
|
|
+ android:textStyle="bold"
|
|
|
+ tools:ignore="MissingConstraints" />
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/ict_port_save"
|
|
|
+ android:layout_width="@dimen/dp_150"
|
|
|
+ android:layout_height="@dimen/dp_40"
|
|
|
+ android:background="@drawable/bg_config_confirm"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/confirm_revision"
|
|
|
+ android:textColor="#FE5DBB"
|
|
|
+ android:textSize="@dimen/sp_18" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</android.support.constraint.ConstraintLayout>
|