forked from github/szkolny
61 lines
2.2 KiB
XML
61 lines
2.2 KiB
XML
![]() |
<?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="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
||
|
android:id="@+id/chatContainer"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_weight="1">
|
||
|
|
||
|
<com.github.bassaer.chatmessageview.view.MessageView
|
||
|
android:id="@+id/messageView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:cacheColorHint="@android:color/transparent"
|
||
|
android:listSelector="@android:color/transparent"/>
|
||
|
|
||
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
||
|
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?colorSurface"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/optionButtonContainer"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
</FrameLayout>
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputLayout
|
||
|
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1">
|
||
|
|
||
|
<com.google.android.material.textfield.TextInputEditText
|
||
|
android:id="@+id/inputBox"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:maxLines="3" />
|
||
|
|
||
|
</com.google.android.material.textfield.TextInputLayout>
|
||
|
|
||
|
<ImageButton
|
||
|
android:id="@+id/sendButton"
|
||
|
style="@style/Base.Widget.AppCompat.Button.Borderless"
|
||
|
android:layout_width="@dimen/icon_normal"
|
||
|
android:layout_height="@dimen/icon_normal"
|
||
|
android:layout_gravity="center"
|
||
|
android:contentDescription="@string/send"
|
||
|
android:src="@drawable/ic_action_send" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</LinearLayout>
|