nim_message_item_avchat.xml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/message_item_avchat_content"
  4. android:layout_width="wrap_content"
  5. android:layout_height="wrap_content"
  6. android:layout_gravity="center_vertical"
  7. android:padding="6dp"
  8. android:orientation="horizontal">
  9. <ImageView
  10. android:id="@+id/message_item_avchat_type_img"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="center_vertical"
  14. android:layout_marginLeft="3dp"
  15. android:layout_marginRight="8dp"
  16. android:contentDescription="@string/empty"
  17. android:src="@drawable/avchat_left_type_audio"/>
  18. <TextView
  19. android:id="@+id/message_item_avchat_state"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_gravity="center_vertical"
  23. android:layout_marginRight="5dp"
  24. android:text="无人接听"
  25. android:textColor="@color/color_grey_999999"
  26. android:textSize="@dimen/text_size_14"/>
  27. </LinearLayout>