avchat_activity.xml 1008 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/parentLayout"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:orientation="vertical">
  7. <include
  8. android:id="@+id/avchat_audio_layout"
  9. layout="@layout/avchat_audio_layout"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:visibility="gone" />
  13. <include
  14. android:id="@+id/avchat_surface_layout"
  15. layout="@layout/avchat_surface_layout"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent"
  18. android:visibility="visible" />
  19. <include
  20. android:id="@+id/avchat_video_layout"
  21. layout="@layout/avchat_video_layout"
  22. android:layout_width="match_parent"
  23. android:layout_height="match_parent"
  24. android:visibility="gone" />
  25. </FrameLayout>