|
@@ -44,9 +44,9 @@
|
44
|
44
|
android:layout_width="wrap_content"
|
45
|
45
|
android:layout_height="37dp"
|
46
|
46
|
android:src="@drawable/ic_manageapp_launcher"
|
|
47
|
+ app:layout_constraintHorizontal_chainStyle="packed"
|
47
|
48
|
app:layout_constraintLeft_toLeftOf="parent"
|
48
|
49
|
app:layout_constraintRight_toLeftOf="@id/logo_tv"
|
49
|
|
- app:layout_constraintHorizontal_chainStyle="packed"
|
50
|
50
|
app:layout_constraintTop_toTopOf="parent" />
|
51
|
51
|
|
52
|
52
|
<TextView
|
|
@@ -133,18 +133,32 @@
|
133
|
133
|
app:layout_constraintRight_toRightOf="parent"
|
134
|
134
|
app:layout_constraintTop_toBottomOf="@id/code_et" />
|
135
|
135
|
|
136
|
|
- <Button
|
|
136
|
+ <FrameLayout
|
137
|
137
|
android:id="@+id/login_btn"
|
138
|
138
|
android:layout_width="387dp"
|
139
|
139
|
android:layout_height="49dp"
|
140
|
140
|
android:layout_marginTop="279dp"
|
141
|
|
- android:background="@drawable/icon_login"
|
142
|
|
- android:text="@string/loginnow"
|
143
|
|
- android:textColor="@color/white"
|
144
|
|
- android:textSize="21sp"
|
145
|
141
|
app:layout_constraintLeft_toLeftOf="parent"
|
146
|
142
|
app:layout_constraintRight_toRightOf="parent"
|
147
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
143
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
144
|
+
|
|
145
|
+ <com.makeramen.roundedimageview.RoundedImageView
|
|
146
|
+ android:layout_width="match_parent"
|
|
147
|
+ android:layout_height="match_parent"
|
|
148
|
+ android:src="@drawable/icon_login"
|
|
149
|
+ app:riv_corner_radius_bottom_left="12dp"
|
|
150
|
+ app:riv_corner_radius_bottom_right="12dp"
|
|
151
|
+ app:riv_corner_radius_top_left="12dp"
|
|
152
|
+ app:riv_corner_radius_top_right="12dp" />
|
|
153
|
+
|
|
154
|
+ <TextView
|
|
155
|
+ android:layout_width="match_parent"
|
|
156
|
+ android:layout_height="match_parent"
|
|
157
|
+ android:gravity="center"
|
|
158
|
+ android:text="@string/loginnow"
|
|
159
|
+ android:textColor="@color/white"
|
|
160
|
+ android:textSize="21sp" />
|
|
161
|
+ </FrameLayout>
|
148
|
162
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
149
|
163
|
</androidx.core.widget.NestedScrollView>
|
150
|
164
|
|
|
@@ -212,8 +226,7 @@
|
212
|
226
|
android:background="@drawable/main_bg"
|
213
|
227
|
android:gravity="center_horizontal"
|
214
|
228
|
android:orientation="vertical"
|
215
|
|
- android:visibility="gone"
|
216
|
|
- >
|
|
229
|
+ android:visibility="gone">
|
217
|
230
|
|
218
|
231
|
<ImageView
|
219
|
232
|
android:layout_width="157dp"
|