2018-04-03 02:28:26 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-08-09 13:29:04 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:viewBindingIgnore="true"
|
2019-10-07 15:43:36 -03:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2018-04-03 02:28:26 -07:00
|
|
|
|
2019-12-03 16:26:05 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="20dp"
|
2020-11-10 10:20:54 -05:00
|
|
|
app:srcCompat="@drawable/ic_message_tinted_bitmap_24" />
|
2018-04-03 02:28:26 -07:00
|
|
|
|
2019-12-03 16:26:05 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/call"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:srcCompat="@drawable/ic_phone_right_unlock_solid_24" />
|
2018-04-03 02:28:26 -07:00
|
|
|
|
2019-12-03 16:26:05 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/secure_video"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="20dp"
|
2021-02-09 11:42:57 -05:00
|
|
|
app:srcCompat="@drawable/ic_video_call_24" />
|
2019-12-03 16:26:05 -04:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/secure_call"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-02-09 11:42:57 -05:00
|
|
|
app:srcCompat="@drawable/ic_phone_right_24" />
|
2018-04-03 02:28:26 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|