|
@@ -2,6 +2,7 @@
|
2
|
2
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
3
|
android:layout_width="355dp"
|
4
|
4
|
android:layout_height="wrap_content"
|
|
5
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
5
|
6
|
android:background="@drawable/shape_whiteradiu_bg"
|
6
|
7
|
android:gravity="center_horizontal"
|
7
|
8
|
android:minHeight="333dp"
|
|
@@ -175,16 +176,28 @@
|
175
|
176
|
android:textColor="#339DFF"
|
176
|
177
|
android:textSize="17sp" />
|
177
|
178
|
|
178
|
|
- <TextView
|
179
|
|
- android:id="@+id/dialog_enter_tv"
|
|
179
|
+ <FrameLayout
|
180
|
180
|
android:layout_width="147dp"
|
181
|
181
|
android:layout_height="40dp"
|
182
|
|
- android:layout_marginLeft="17dp"
|
183
|
|
- android:background="@drawable/icon_login"
|
184
|
|
- android:gravity="center"
|
185
|
|
- android:text="@string/enter"
|
186
|
|
- android:textColor="@color/white"
|
187
|
|
- android:textSize="17sp" />
|
|
182
|
+ android:layout_marginLeft="17dp">
|
|
183
|
+
|
|
184
|
+ <com.makeramen.roundedimageview.RoundedImageView
|
|
185
|
+ android:layout_width="147dp"
|
|
186
|
+ android:layout_height="40dp"
|
|
187
|
+ android:gravity="center"
|
|
188
|
+ android:scaleType="centerCrop"
|
|
189
|
+ android:src="@drawable/icon_login"
|
|
190
|
+ app:riv_corner_radius="10dp" />
|
|
191
|
+
|
|
192
|
+ <TextView
|
|
193
|
+ android:id="@+id/dialog_enter_tv"
|
|
194
|
+ android:layout_width="147dp"
|
|
195
|
+ android:layout_height="40dp"
|
|
196
|
+ android:gravity="center"
|
|
197
|
+ android:text="@string/enter"
|
|
198
|
+ android:textColor="@color/white"
|
|
199
|
+ android:textSize="17sp" />
|
|
200
|
+ </FrameLayout>
|
188
|
201
|
</LinearLayout>
|
189
|
202
|
</LinearLayout>
|
190
|
203
|
</androidx.core.widget.NestedScrollView>
|