team_avchat_voice_mute_item.xml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal"
  6. android:paddingBottom="@dimen/bubble_padding_top"
  7. android:paddingLeft="@dimen/bubble_padding_left"
  8. android:paddingRight="@dimen/bubble_padding_left"
  9. android:paddingTop="@dimen/bubble_padding_top"
  10. >
  11. <com.netease.nim.uikit.common.ui.imageview.HeadImageView
  12. android:id="@+id/head_image"
  13. android:layout_width="@dimen/avatar_size_in_contact"
  14. android:layout_height="@dimen/avatar_size_in_contact"/>
  15. <TextView
  16. android:id="@+id/tv_nick_name"
  17. android:layout_width="0dp"
  18. android:layout_height="match_parent"
  19. android:layout_marginLeft="@dimen/dialog_text_margin_horizontal"
  20. android:layout_weight="1"
  21. android:gravity="center_vertical"
  22. android:textSize="@dimen/normal_text_size"/>
  23. <ImageView
  24. android:id="@+id/img_mute"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"/>
  27. </LinearLayout>