效果:
注意几点:
显示的有大小,时长,以及类型是录像,缩略图:
<?xml version="1.0" encoding="utf-8"?>
<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" />
<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:background="@drawable/mini_avatar_shadow"
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_alignParentLeft="true"
android:layout_below="@id/iv_userhead"
android:layout_toLeftOf="@+id/ll_click_area" />
<LinearLayout
android:id="@+id/ll_click_area"
android:layout_width="130dp"
android:layout_height="145dp"
android:layout_marginLeft="@dimen/margin_chat_activity"
android:layout_toRightOf="@id/iv_userhead" >
<FrameLayout
android:id="@+id/chatting_click_area"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/chatfrom_bg" >
<ImageView
android:id="@+id/chatting_content_iv"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitXY" />
<LinearLayout
android:id="@+id/chatting_video_data_area"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/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>
<LinearLayout
android:id="@+id/container_status_btn"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center" >
<ImageView
android:id="@+id/chatting_status_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null" />
</LinearLayout>
</FrameLayout>
</LinearLayout>
</RelativeLayout>
</LinearLayout>