123 lines
4.4 KiB
XML
123 lines
4.4 KiB
XML
<?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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/app_background"
|
|
android:orientation="vertical"
|
|
tools:context=".MainActivity"
|
|
tools:ignore="HardcodedText">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="160dp"
|
|
android:background="@drawable/bg_chat_header"
|
|
android:gravity="bottom|center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="24dp"
|
|
android:paddingEnd="24dp"
|
|
android:paddingBottom="24dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="12dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:includeFontPadding="false"
|
|
android:text="Chat IA"
|
|
android:textColor="@color/white"
|
|
android:textSize="30sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:text="A conversa fica guardada neste dispositivo."
|
|
android:textColor="#EEF9F7"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/newChatButton"
|
|
android:layout_width="104dp"
|
|
android:layout_height="46dp"
|
|
android:text="Novo chat"
|
|
android:textAllCaps="false"
|
|
android:textColor="@color/white"
|
|
android:textSize="13sp"
|
|
android:textStyle="bold"
|
|
app:backgroundTint="#26FFFFFF"
|
|
app:cornerRadius="18dp"
|
|
app:strokeColor="#70FFFFFF"
|
|
app:strokeWidth="1dp" />
|
|
</LinearLayout>
|
|
|
|
<ScrollView
|
|
android:id="@+id/chatScroll"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:clipToPadding="false"
|
|
android:paddingStart="18dp"
|
|
android:paddingTop="18dp"
|
|
android:paddingEnd="18dp"
|
|
android:paddingBottom="12dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/messagesContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" />
|
|
</ScrollView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_bottom_bar"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="14dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingEnd="14dp"
|
|
android:paddingBottom="14dp">
|
|
|
|
<EditText
|
|
android:id="@+id/promptInput"
|
|
android:layout_width="0dp"
|
|
android:layout_height="52dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/bg_input"
|
|
android:hint="Escreve uma pergunta..."
|
|
android:imeOptions="actionSend"
|
|
android:inputType="textCapSentences|textMultiLine"
|
|
android:maxLines="3"
|
|
android:minHeight="52dp"
|
|
android:paddingStart="18dp"
|
|
android:paddingEnd="18dp"
|
|
android:textColor="@color/text_primary"
|
|
android:textColorHint="@color/text_secondary"
|
|
android:textSize="15sp" />
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
android:id="@+id/sendButton"
|
|
android:layout_width="96dp"
|
|
android:layout_height="52dp"
|
|
android:text="Enviar"
|
|
android:textAllCaps="false"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold"
|
|
app:backgroundTint="@color/accent_teal"
|
|
app:cornerRadius="24dp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|