aboutsummaryrefslogtreecommitdiff
path: root/notification/Bubbles/app/src/main/res/layout/chat_fragment.xml
diff options
context:
space:
mode:
Diffstat (limited to 'notification/Bubbles/app/src/main/res/layout/chat_fragment.xml')
-rw-r--r--notification/Bubbles/app/src/main/res/layout/chat_fragment.xml74
1 files changed, 74 insertions, 0 deletions
diff --git a/notification/Bubbles/app/src/main/res/layout/chat_fragment.xml b/notification/Bubbles/app/src/main/res/layout/chat_fragment.xml
new file mode 100644
index 00000000..4ce86e4b
--- /dev/null
+++ b/notification/Bubbles/app/src/main/res/layout/chat_fragment.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2019 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ android:id="@+id/chat"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/messages"
+ style="?attr/buttonBarStyle"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ android:clipToPadding="false"
+ android:paddingTop="@dimen/spacing_small"
+ android:paddingBottom="@dimen/spacing_small"
+ android:scrollbars="vertical" />
+
+ <LinearLayout
+ android:id="@+id/input_bar"
+ android:layout_width="match_parent"
+ android:layout_height="?attr/actionBarSize"
+ android:background="?android:attr/windowBackground"
+ android:elevation="@dimen/app_bar_elevation"
+ android:orientation="horizontal">
+
+ <ImageButton
+ android:id="@+id/voice_call"
+ style="?attr/buttonBarNeutralButtonStyle"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:contentDescription="@string/description_voice_call"
+ android:tint="?attr/colorAccent"
+ app:srcCompat="@drawable/ic_voice_call" />
+
+ <EditText
+ android:id="@+id/input"
+ android:layout_width="0dp"
+ android:layout_height="match_parent"
+ android:layout_weight="1"
+ android:hint="@string/hint_input"
+ android:imeOptions="actionSend"
+ android:importantForAutofill="no"
+ android:inputType="textCapSentences" />
+
+ <ImageButton
+ android:id="@+id/send"
+ style="?attr/buttonBarNeutralButtonStyle"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:contentDescription="@string/description_send"
+ android:tint="?attr/colorAccent"
+ app:srcCompat="@drawable/ic_send" />
+
+ </LinearLayout>
+
+</LinearLayout>