88 lines
No EOL
4 KiB
XML
88 lines
No EOL
4 KiB
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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
tools:context="org.thoughtcrime.securesms.components.AudioView">
|
|
|
|
<LinearLayout android:id="@+id/audio_widget_container"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
tools:background="#ff00ff"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<org.thoughtcrime.securesms.components.AnimatingToggle
|
|
android:id="@+id/control_toggle"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center"
|
|
android:gravity="center">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/progress_and_play"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.pnikosis.materialishprogress.ProgressWheel
|
|
android:id="@+id/download_progress"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center"
|
|
app:matProg_barColor="@color/white"
|
|
app:matProg_linearProgress="true"
|
|
app:matProg_spinSpeed="0.333" />
|
|
|
|
<com.airbnb.lottie.LottieAnimationView
|
|
android:id="@+id/play"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="center"
|
|
android:background="@drawable/circle_touch_highlight_background"
|
|
android:contentDescription="@string/audio_view__play_pause_accessibility_description"
|
|
android:gravity="center_vertical"
|
|
android:padding="12dp"
|
|
android:visibility="gone"
|
|
app:lottie_rawRes="@raw/lottie_play_pause"
|
|
tools:visibility="visible" />
|
|
|
|
</FrameLayout>
|
|
|
|
<ImageView android:id="@+id/download"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:clickable="true"
|
|
android:visibility="gone"
|
|
android:background="@drawable/circle_touch_highlight_background"
|
|
android:src="@drawable/ic_download_circle_fill_white_48dp"
|
|
android:contentDescription="@string/audio_view__download_accessibility_description"/>
|
|
|
|
</org.thoughtcrime.securesms.components.AnimatingToggle>
|
|
|
|
<SeekBar android:id="@+id/seek"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView android:id="@+id/timestamp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="76dip"
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
android:textColor="?conversation_item_sent_text_secondary_color"
|
|
android:textSize="@dimen/conversation_item_date_text_size"
|
|
android:fontFamily="sans-serif-light"
|
|
android:autoLink="none"
|
|
android:visibility="gone"
|
|
tools:text="00:15"
|
|
tools:visibility="visible"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</merge> |