2015-10-21 15:32:29 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-12-03 11:05:03 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:context="org.thoughtcrime.securesms.components.AudioView">
|
2015-10-21 15:32:29 -07:00
|
|
|
|
2019-12-03 11:05:03 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:10:10 -03:00
|
|
|
android:orientation="horizontal"
|
2019-12-03 11:05:03 -05:00
|
|
|
tools:background="#ff00ff">
|
2015-10-21 15:32:29 -07:00
|
|
|
|
2020-06-01 18:10:10 -03:00
|
|
|
<include layout="@layout/audio_view_circle" />
|
2015-10-21 15:32:29 -07:00
|
|
|
|
2020-06-01 18:10:10 -03:00
|
|
|
<org.thoughtcrime.securesms.components.WaveFormSeekBarView
|
|
|
|
android:id="@+id/seek"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:paddingStart="12dp"
|
2020-10-22 16:22:21 -03:00
|
|
|
android:paddingTop="8dp"
|
2020-06-01 18:10:10 -03:00
|
|
|
android:paddingEnd="8dp"
|
2020-10-22 16:22:21 -03:00
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:thumb="@drawable/audio_wave_thumb"
|
2020-06-01 18:10:10 -03:00
|
|
|
tools:progress="50" />
|
2015-10-21 15:32:29 -07:00
|
|
|
|
2019-12-03 11:05:03 -05:00
|
|
|
<TextView
|
2020-06-01 18:10:10 -03:00
|
|
|
android:id="@+id/duration"
|
2019-12-03 11:05:03 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-01 18:10:10 -03:00
|
|
|
android:layout_gravity="center_vertical"
|
2019-12-03 11:05:03 -05:00
|
|
|
android:fontFamily="sans-serif-light"
|
2020-06-01 18:10:10 -03:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2019-12-03 11:05:03 -05:00
|
|
|
android:textColor="?conversation_item_sent_text_secondary_color"
|
|
|
|
android:textSize="@dimen/conversation_item_date_text_size"
|
|
|
|
android:visibility="gone"
|
2020-06-01 18:10:10 -03:00
|
|
|
tools:text="00:30"
|
2019-12-03 11:05:03 -05:00
|
|
|
tools:visibility="visible" />
|
2015-10-21 15:32:29 -07:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</merge>
|