123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/icon_uniform_background"
- android:orientation="vertical">
- <com.tencent.qcloud.tuikit.timcommon.component.TitleBarLayout
- android:id="@+id/chat_title_bar"
- android:layout_width="match_parent"
- android:layout_height="@dimen/divider_108px" />
- <androidx.cardview.widget.CardView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_below="@+id/chat_title_bar"
- android:layout_marginStart="@dimen/divider_22px"
- android:layout_marginEnd="@dimen/divider_22px"
- android:layout_marginBottom="@dimen/divider_22px"
- app:cardBackgroundColor="@android:color/white"
- app:cardCornerRadius="@dimen/divider_28px">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <FrameLayout
- android:id="@+id/custom_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="0dp"
- android:visibility="gone" />
- <com.tencent.qcloud.tuikit.tuichat.classicui.widget.message.MessageRecyclerView
- android:id="@+id/chat_message_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_above="@id/chat_input_layout"
- android:baselineAligned="false"
- android:clickable="false"
- android:descendantFocusability="blocksDescendants" />
- <com.tencent.qcloud.tuikit.tuichat.classicui.widget.input.InputView
- android:id="@+id/chat_input_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true" />
- <androidx.cardview.widget.CardView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_above="@+id/chat_input_layout"
- android:layout_alignParentEnd="true"
- android:layout_alignParentRight="true"
- android:layout_marginEnd="@dimen/btn_margin_right"
- android:layout_marginRight="@dimen/btn_margin_right"
- android:layout_marginBottom="@dimen/btn_margin_right"
- app:cardCornerRadius="4dp"
- app:cardElevation="6dp"
- app:cardUseCompatPadding="true">
- <LinearLayout
- android:id="@+id/jump_message_layout"
- android:layout_width="wrap_content"
- android:layout_height="33.6dp"
- android:background="#FFFFFF"
- android:gravity="center"
- android:orientation="horizontal"
- android:paddingLeft="10.08dp"
- android:paddingTop="9.12dp"
- android:paddingRight="9.6dp"
- android:paddingBottom="8.64dp"
- android:visibility="visible">
- <ImageView
- android:id="@+id/arrow_icon"
- android:layout_width="11.52dp"
- android:layout_height="11.52dp"
- android:layout_gravity="center"
- android:background="?attr/chat_jump_recent_down_icon"
- android:clickable="false"
- android:scaleType="fitCenter" />
- <TextView
- android:id="@+id/jump_message_content"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5.76dp"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:textColor="?attr/core_primary_color"
- android:textSize="11.52sp" />
- </LinearLayout>
- </androidx.cardview.widget.CardView>
- <RelativeLayout
- android:id="@+id/voice_recording_view"
- android:layout_width="150dp"
- android:layout_height="150dp"
- android:layout_centerInParent="true"
- android:background="@drawable/ic_volume_dialog_bg"
- android:visibility="gone">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerInParent="true"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <ImageView
- android:id="@+id/recording_icon"
- android:layout_width="match_parent"
- android:layout_height="100dp"
- android:layout_marginTop="10dp" />
- <TextView
- android:id="@+id/recording_tips"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="10dp"
- android:textSize="12sp" />
- </LinearLayout>
- </RelativeLayout>
- </RelativeLayout>
- </androidx.cardview.widget.CardView>
- </RelativeLayout>
|