今天寫聊天雙方的頭像和氣泡的格式
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="6dp"> <ImageView android:id="@+id/iv_head" android:layout_width="65dp" android:layout_height="65dp" android:layout_alignParentLeft="true" android:layout_alignParentTop="true" android:layout_marginTop="5dp" android:background="@drawable/robot_head" android:focusable="false"/> <TextView android:id="@+id/tv_chat_content" style="@style/chat_content_style" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:layout_toRightOf="@+id/iv_head" android:background="@drawable/chat_left_selector" tools:ignore="SpeakableTextPresentCheck,SpeakableTextPresentCheck" /> </RelativeLayout>
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="6dp"> <ImageView android:id="@+id/iv_head" android:layout_width="65dp" android:layout_height="65dp" android:layout_alignParentRight="true" android:layout_alignParentTop="true" android:layout_marginTop="5dp" android:background="@drawable/myhead" android:focusable="false"/> <TextView android:id="@+id/tv_chat_content" style="@style/chat_content_style" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" android:layout_toLeftOf="@+id/iv_head" android:background="@drawable/chat_right_selector" tools:ignore="SpeakableTextPresentCheck,SpeakableTextPresentCheck" /> </RelativeLayout>