react-native-cosser
Version:
环信客服功能
92 lines (80 loc) • 3.66 kB
text/xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical"
android:paddingTop="13dp" >
<TextView
android:id="@+id/timestamp"
style="@style/chat_text_date_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/margin_chat_activity" >
<ImageView
android:id="@+id/iv_userhead"
android:layout_width="@dimen/size_avatar"
android:layout_height="@dimen/size_avatar"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="@dimen/margin_chat_activity"
android:scaleType="fitXY" />
<TextView
android:id="@+id/tv_userid"
style="@style/chat_text_name_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/chat_nick_margin_left"
android:textSize="@dimen/chat_nick_text_size"
android:layout_toRightOf="@id/iv_userhead"
android:visibility="gone" />
<RelativeLayout
android:id="@+id/bubble"
android:layout_width="130dp"
android:layout_height="145dp"
android:layout_below="@+id/tv_userid"
android:layout_marginLeft="@dimen/margin_chat_activity"
android:layout_toRightOf="@id/iv_userhead"
android:background="@drawable/hd_chatfrom_bg" >
<ImageView
android:id="@+id/chatting_content_iv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY" />
<LinearLayout
android:id="@+id/chatting_video_data_area"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/hd_chat_video_mask_to"
android:gravity="bottom"
android:orientation="horizontal" >
<TextView
android:id="@+id/chatting_size_iv"
android:layout_width="0.0dip"
android:layout_height="wrap_content"
android:layout_weight="1.0"
android:textColor="@android:color/white"
android:textSize="12sp"
android:visibility="visible" />
<TextView
android:id="@+id/chatting_length_iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right"
android:textColor="@android:color/white"
android:textSize="12sp" />
</LinearLayout>
<ImageView
android:clickable="false"
android:id="@+id/chatting_status_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/hd_video_play_btn_small_nor" />
</RelativeLayout>
</RelativeLayout>
</LinearLayout>