video_call_bottom_switch_layout.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/avchat_incoming_control"
  4. android:layout_width="fill_parent"
  5. android:layout_height="wrap_content"
  6. android:baselineAligned="false"
  7. android:gravity="center"
  8. android:orientation="horizontal"
  9. android:visibility="visible">
  10. <ImageView
  11. android:id="@+id/avchat_switch_camera"
  12. android:layout_width="0dp"
  13. android:layout_height="wrap_content"
  14. android:layout_weight="1"
  15. android:background="@color/color_f2f7fc"
  16. android:contentDescription="@string/empty"
  17. android:padding="10dp"
  18. android:scaleType="centerInside"
  19. android:src="@drawable/avchat_switch_camera_bg" />
  20. <ImageView
  21. android:id="@+id/avchat_close_camera"
  22. android:layout_width="0dp"
  23. android:layout_height="wrap_content"
  24. android:layout_weight="1"
  25. android:background="@color/color_f2f7fc"
  26. android:contentDescription="@string/empty"
  27. android:padding="10dp"
  28. android:scaleType="centerInside"
  29. android:src="@drawable/avchat_close_camera_bg" />
  30. <ImageView
  31. android:id="@+id/avchat_video_mute"
  32. android:layout_width="0dp"
  33. android:layout_height="wrap_content"
  34. android:layout_weight="1"
  35. android:background="@color/color_f2f7fc"
  36. android:contentDescription="@string/empty"
  37. android:padding="10dp"
  38. android:scaleType="centerInside"
  39. android:src="@drawable/avchat_mute_bg" />
  40. <ImageView
  41. android:id="@+id/avchat_video_record"
  42. android:layout_width="0dp"
  43. android:layout_height="wrap_content"
  44. android:layout_weight="1"
  45. android:background="@color/color_f2f7fc"
  46. android:contentDescription="@string/empty"
  47. android:padding="10dp"
  48. android:scaleType="centerInside"
  49. android:src="@drawable/avchat_video_record_selector" />
  50. <ImageView
  51. android:id="@+id/avchat_video_logout"
  52. android:layout_width="0dp"
  53. android:layout_height="wrap_content"
  54. android:layout_weight="1"
  55. android:background="@drawable/avchat_logut_bg_selector"
  56. android:contentDescription="@string/empty"
  57. android:padding="10dp"
  58. android:scaleType="centerInside"
  59. android:src="@drawable/avchat_bottom_logout_selector" />
  60. </LinearLayout>