<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:gravity="center"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginHorizontal="25dp"
|
android:background="@drawable/bg_white_10dp">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="添加微信"
|
android:textSize="18sp"
|
android:layout_marginTop="17dp"
|
android:textColor="@color/textColor"
|
android:textStyle="bold" />
|
<com.facebook.drawee.view.SimpleDraweeView
|
android:layout_width="230dp"
|
android:layout_height="230dp"
|
android:id="@+id/iv_code"
|
android:layout_marginTop="20dp"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="可添加助教微信,了解课程详情"
|
android:layout_marginTop="14dp"/>
|
<TextView
|
android:id="@+id/tv_action"
|
android:layout_width="266dp"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="20dp"
|
android:text="知道了"
|
style="@style/style_btn_action"
|
android:layout_marginTop="24dp"/>
|
</LinearLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|