avchat_video_layout.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical">
  6. <include
  7. android:id="@+id/avchat_video_top_control"
  8. layout="@layout/video_switch_audio_layout"
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:layout_alignParentTop="true"
  12. android:layout_marginLeft="22dp"
  13. android:layout_marginTop="18dp"
  14. android:visibility="visible" />
  15. <include
  16. android:id="@+id/avchat_video_middle_control"
  17. layout="@layout/avchat_video_center_layout"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:visibility="gone" />
  21. <include
  22. android:id="@+id/avchat_video_bottom_control"
  23. layout="@layout/video_call_bottom_switch_layout"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:layout_alignParentBottom="true" />
  27. <include
  28. android:id="@+id/avchat_record_layout"
  29. layout="@layout/avchat_record_layout"
  30. android:layout_above="@+id/avchat_video_bottom_control"
  31. android:layout_marginBottom="15dp"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:layout_centerHorizontal="true"
  35. android:visibility="invisible" />
  36. <include
  37. android:id="@+id/avchat_video_permission_control"
  38. layout="@layout/avchat_video_permission_layout"
  39. android:layout_marginTop="170dp"
  40. android:layout_width="match_parent"
  41. android:layout_height="wrap_content"
  42. android:visibility="gone" />
  43. </RelativeLayout>