2020-01-29 22:13:44 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2022-05-26 17:32:52 -03:00
|
|
|
<org.thoughtcrime.securesms.components.SquareFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-29 22:13:44 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:layout_marginEnd="12dp"
|
2020-01-29 22:13:44 -05:00
|
|
|
app:square_height="true">
|
|
|
|
|
2020-04-02 10:55:52 -04:00
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
2020-01-29 22:13:44 -05:00
|
|
|
android:id="@+id/attachment_keyboard_item_image"
|
|
|
|
android:layout_width="match_parent"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:thumbnail_radius="9dp" />
|
2020-01-29 22:13:44 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/attachment_keyboard_item_video_time"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:layout_gravity="bottom|end"
|
2020-01-29 22:13:44 -05:00
|
|
|
android:layout_marginEnd="6dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:background="@drawable/transparent_black_pill"
|
|
|
|
android:fontFamily="sans-serif-medium"
|
2020-01-29 22:13:44 -05:00
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingTop="4dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:paddingEnd="8dp"
|
2020-01-29 22:13:44 -05:00
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:textColor="@color/core_white"
|
|
|
|
android:textSize="13sp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/attachment_keyboard_item_video_icon"
|
|
|
|
android:layout_width="27dp"
|
|
|
|
android:layout_height="27dp"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_marginEnd="6dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:background="@drawable/transparent_black_pill"
|
2020-01-29 22:13:44 -05:00
|
|
|
android:paddingStart="9dp"
|
|
|
|
android:paddingTop="7dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:paddingEnd="5dp"
|
2020-01-29 22:13:44 -05:00
|
|
|
android:paddingBottom="7dp"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:visibility="gone"
|
|
|
|
app:srcCompat="@drawable/triangle_right" />
|
2020-01-29 22:13:44 -05:00
|
|
|
|
|
|
|
</org.thoughtcrime.securesms.components.SquareFrameLayout>
|