mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
67 lines
2.4 KiB
XML
67 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="250dp"
|
|
android:layout_height="wrap_content"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/map_bubble_add_poi"
|
|
android:paddingTop="8dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:layout_marginEnd="4dp"
|
|
android:text="@string/add_poi"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<EditText
|
|
android:id="@+id/message_view"
|
|
android:layout_width="200dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginRight="4dp"
|
|
android:layout_marginStart="4dp"
|
|
android:layout_marginEnd="4dp"
|
|
android:maxLines="5"
|
|
android:layout_gravity="center"
|
|
/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical">
|
|
<ImageButton
|
|
android:id="@+id/sendView"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:padding="4dp"
|
|
android:paddingLeft="8dp"
|
|
android:paddingStart="8dp"
|
|
android:src="@drawable/ic_send_sms_white_24dp"
|
|
android:background="@drawable/circle_touch_highlight_background_map"
|
|
android:contentDescription="@string/menu_send"
|
|
android:scaleType="fitCenter"
|
|
/>
|
|
<ProgressBar
|
|
android:id="@+id/sending_progress"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"
|
|
/>
|
|
</RelativeLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|