<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="30dp"
|
android:layout_marginTop="30dp"
|
android:layout_marginRight="30dp"
|
android:layout_marginBottom="30dp"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<TextView
|
android:id="@+id/durationTextView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="00:00" />
|
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:gravity="center"
|
android:layout_marginTop="5dp"
|
android:orientation="vertical">
|
|
<ImageView
|
android:id="@+id/shareScreenImageView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@drawable/av_share" />
|
|
<TextView
|
android:id="@+id/shareScreenTextView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:text="开始屏幕共享" />
|
|
</LinearLayout>
|
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="20dp"
|
android:orientation="horizontal">
|
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<ImageView
|
android:id="@+id/connectedAudioOnlyImageView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@drawable/av_phone" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:text="切到语音通话" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<ImageView
|
android:id="@+id/connectedHangupImageView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@drawable/av_hangup_selector" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:text="挂断" />
|
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="wrap_content"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<ImageView
|
android:id="@+id/switchCameraImageView"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@drawable/av_switch_camera_selector" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="10dp"
|
android:text="旋转摄像头" />
|
|
</LinearLayout>
|
</LinearLayout>
|
|
</LinearLayout>
|