|
@@ -125,10 +125,62 @@
|
125
|
125
|
android:background="@drawable/icon_login"
|
126
|
126
|
android:text="@string/loginnow"
|
127
|
127
|
android:textColor="@color/white"
|
|
128
|
+ android:textSize="21sp"
|
128
|
129
|
app:layout_constraintLeft_toLeftOf="parent"
|
129
|
130
|
app:layout_constraintRight_toRightOf="parent"
|
130
|
131
|
app:layout_constraintTop_toTopOf="parent" />
|
131
|
132
|
|
|
133
|
+ <LinearLayout
|
|
134
|
+ android:layout_width="match_parent"
|
|
135
|
+ android:layout_height="wrap_content"
|
|
136
|
+ android:layout_marginTop="10dp"
|
|
137
|
+ android:gravity="center"
|
|
138
|
+ android:orientation="horizontal"
|
|
139
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
140
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
141
|
+ app:layout_constraintTop_toBottomOf="@id/login_btn">
|
|
142
|
+
|
|
143
|
+ <LinearLayout
|
|
144
|
+ android:id="@+id/netset_llayout"
|
|
145
|
+ android:layout_width="wrap_content"
|
|
146
|
+ android:layout_height="wrap_content"
|
|
147
|
+ android:layout_marginRight="29dp"
|
|
148
|
+ android:gravity="center"
|
|
149
|
+ android:orientation="horizontal">
|
|
150
|
+
|
|
151
|
+ <ImageView
|
|
152
|
+ android:layout_width="21dp"
|
|
153
|
+ android:layout_height="21dp"
|
|
154
|
+ android:src="@drawable/icon_wifiset" />
|
|
155
|
+
|
|
156
|
+ <TextView
|
|
157
|
+ android:layout_width="wrap_content"
|
|
158
|
+ android:layout_height="wrap_content"
|
|
159
|
+ android:text="@string/netset"
|
|
160
|
+ android:textColor="@color/codetipscolor"
|
|
161
|
+ android:textSize="19sp" />
|
|
162
|
+ </LinearLayout>
|
|
163
|
+
|
|
164
|
+ <LinearLayout
|
|
165
|
+ android:id="@+id/synctime_llayout"
|
|
166
|
+ android:layout_width="wrap_content"
|
|
167
|
+ android:layout_height="wrap_content"
|
|
168
|
+ android:gravity="center"
|
|
169
|
+ android:orientation="horizontal">
|
|
170
|
+
|
|
171
|
+ <ImageView
|
|
172
|
+ android:layout_width="21dp"
|
|
173
|
+ android:layout_height="21dp"
|
|
174
|
+ android:src="@drawable/icon_synctime" />
|
|
175
|
+
|
|
176
|
+ <TextView
|
|
177
|
+ android:layout_width="wrap_content"
|
|
178
|
+ android:layout_height="wrap_content"
|
|
179
|
+ android:text="@string/synctime"
|
|
180
|
+ android:textColor="@color/codetipscolor"
|
|
181
|
+ android:textSize="19sp" />
|
|
182
|
+ </LinearLayout>
|
|
183
|
+ </LinearLayout>
|
132
|
184
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
133
|
185
|
</androidx.core.widget.NestedScrollView>
|
134
|
186
|
</androidx.constraintlayout.widget.ConstraintLayout>
|