123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:background="@color/black">
- <FrameLayout
- android:id="@+id/player_frame"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center">
- <com.edufound.reader.cusview.RvListJzvdStd
- android:id="@+id/activity_record_jzvideo"
- android:layout_width="match_parent"
- android:layout_height="match_parent"></com.edufound.reader.cusview.RvListJzvdStd>
- </FrameLayout>
- <FrameLayout
- android:layout_width="1280dp"
- android:layout_height="720dp"
- android:orientation="horizontal"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintDimensionRatio="h,16:9"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent">
- <ImageView
- android:id="@+id/activity_record_back"
- android:layout_width="77dp"
- android:layout_height="77dp"
- android:layout_marginLeft="32dp"
- android:layout_marginTop="20dp"
- android:src="@drawable/main_back"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"></ImageView>
- <LinearLayout
- android:layout_width="100dp"
- android:layout_height="121dp"
- android:layout_gravity="right|bottom"
- android:layout_marginRight="45dp"
- android:layout_marginBottom="220dp"
- android:gravity="center|right"
- android:orientation="vertical">
- <FrameLayout
- android:id="@+id/activity_record_demonstration"
- android:layout_width="70dp"
- android:layout_height="70dp">
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:src="@drawable/to_record_bg"></ImageView>
- <ImageView
- android:id="@+id/activity_record_demonstration_icon"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:padding="10dp"
- android:src="@drawable/activity_record_demonstration"></ImageView>
- </FrameLayout>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="38dp"
- android:layout_gravity="center"
- android:gravity="center|right"
- android:maxLines="1"
- android:text="听示范"
- android:textColor="@color/white"
- android:textSize="25dp"></TextView>
- </LinearLayout>
- <LinearLayout
- android:layout_width="129dp"
- android:layout_height="wrap_content"
- android:layout_gravity="right|bottom"
- android:layout_marginRight="17dp"
- android:layout_marginBottom="15dp"
- android:gravity="center"
- android:orientation="vertical">
- <FrameLayout
- android:id="@+id/activity_record_controll"
- android:layout_width="129dp"
- android:layout_height="129dp">
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:src="@drawable/to_record_bg"></ImageView>
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:padding="10dp"
- android:src="@drawable/to_record_icon"></ImageView>
- <ImageView
- android:id="@+id/activity_record_mike_icon"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:layout_margin="38dp"
- android:background="@drawable/to_record_icon_mike"></ImageView>
- </FrameLayout>
- <TextView
- android:id="@+id/activity_record_mike_status"
- android:layout_width="match_parent"
- android:layout_height="38dp"
- android:layout_gravity="center"
- android:gravity="center"
- android:text="开始朗读"
- android:textColor="@color/white"
- android:textSize="27dp"></TextView>
- </LinearLayout>
- </FrameLayout>
- </androidx.constraintlayout.widget.ConstraintLayout>
|