23 lines
737 B
XML
23 lines
737 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
tools:context="org.thoughtcrime.securesms.components.AudioView">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
tools:background="#ff00ff">
|
||
|
|
||
|
<include layout="@layout/audio_view_circle" />
|
||
|
|
||
|
<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>
|