forward_chat_layout.xml 1.1 KB

12345678910111213141516171819202122232425262728
  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:background="@color/chat_background_color">
  6. <com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
  7. android:id="@+id/chat_title_bar"
  8. android:layout_width="match_parent"
  9. android:layout_height="@dimen/page_title_height" />
  10. <View
  11. android:id="@+id/view_line"
  12. android:layout_below="@+id/chat_title_bar"
  13. android:layout_width="match_parent"
  14. android:layout_height="0.3dp"
  15. android:background="@color/chat_title_line_color" />
  16. <com.tencent.qcloud.tuikit.tuichat.classicui.widget.message.MessageRecyclerView
  17. android:id="@+id/chat_message_layout"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:layout_below="@+id/view_line"
  21. android:baselineAligned="false"
  22. android:clickable="false"
  23. android:descendantFocusability="blocksDescendants" />
  24. </RelativeLayout>