2019-12-03 11:05:03 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
2019-12-03 11:05:03 -05:00
|
|
|
tools:context="org.thoughtcrime.securesms.components.AudioView">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:background="#ff00ff">
|
|
|
|
|
2021-07-09 10:34:36 -03:00
|
|
|
<include layout="@layout/audio_view_circle_small" />
|
2019-12-03 11:05:03 -05:00
|
|
|
|
|
|
|
<SeekBar
|
|
|
|
android:id="@+id/seek"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</merge>
|