這一階段我的任務主要是呼叫ai介面實現聊天功能,第一天寫頁面的主要排版
<?xml version="1.0" encoding="utf-8"?> <LinearLayout 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" tools:context=".Soul" android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="45dp" android:background="#0cc4e5" android:gravity="center" android:text="小然同學" android:textColor="#795548" android:textSize="20sp" /> <RelativeLayout android:layout_width="fill_parent" android:layout_height="fill_parent"> <ListView android:id="@+id/list" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_above="@+id/rl_bottom" android:cacheColorHint="@android:color/black" android:divider="@null" android:listSelector="@null" android:transcriptMode="alwaysScroll"/> <RelativeLayout android:id="@+id/rl_bottom" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:background="@drawable/bottom_bg"> <Button android:id="@+id/btn_send" android:layout_width="60dp" android:layout_height="48dp" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="10dp" android:background="@drawable/btn_send_selector" android:text="傳送" android:textColor="@android:color/black" android:textSize="14sp" /> <EditText android:id="@+id/et_send_msg" android:layout_width="fill_parent" android:layout_height="40dp" android:layout_centerVertical="true" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_toLeftOf="@+id/btn_send" android:background="@drawable/send_msg_bg" android:singleLine="true" android:textColor="@android:color/black" android:textSize="18sp" tools:ignore="SpeakableTextPresentCheck,SpeakableTextPresentCheck,TouchTargetSizeCheck,TouchTargetSizeCheck" /> </RelativeLayout> </RelativeLayout> </LinearLayout>