2013-04-06 21:47:24 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
2013-04-09 08:01:45 +02:00
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="fill_parent"
|
|
|
|
a:orientation="vertical" >
|
2013-05-29 10:21:09 +02:00
|
|
|
|
2015-07-26 18:15:07 +02:00
|
|
|
<org.moire.ultrasonic.util.MyViewFlipper
|
2013-04-09 08:01:45 +02:00
|
|
|
a:id="@+id/download_playlist_flipper"
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="0dip"
|
|
|
|
a:layout_weight="1" >
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
a:id="@+id/download_album_art_layout"
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="fill_parent"
|
|
|
|
a:layout_weight="1"
|
2017-12-21 11:53:15 +01:00
|
|
|
a:gravity="start"
|
2013-04-09 08:01:45 +02:00
|
|
|
a:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
a:id="@+id/download_album_art_image"
|
2018-07-15 12:19:48 +02:00
|
|
|
a:layout_width="match_parent"
|
|
|
|
a:layout_height="match_parent"
|
2014-01-25 07:33:47 +01:00
|
|
|
a:scaleType="centerCrop"
|
2013-04-09 08:01:45 +02:00
|
|
|
a:layout_alignParentTop="true"
|
2014-01-25 07:33:47 +01:00
|
|
|
a:layout_centerInParent="true"
|
|
|
|
a:contentDescription="@string/albumArt"/>
|
2013-04-09 08:01:45 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
a:id="@+id/download_visualizer_view_layout"
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="60dip"
|
2013-05-26 07:19:28 +02:00
|
|
|
a:layout_alignParentBottom="true"
|
2013-04-09 08:01:45 +02:00
|
|
|
a:layout_gravity="center_horizontal"
|
2013-05-29 10:21:09 +02:00
|
|
|
a:background="@color/translucent"
|
2013-04-09 08:01:45 +02:00
|
|
|
a:layout_marginLeft="80dip"
|
2013-05-20 08:33:40 +02:00
|
|
|
a:layout_marginRight="80dip"
|
2014-01-25 07:33:47 +01:00
|
|
|
a:orientation="vertical"
|
|
|
|
/>
|
2013-04-09 08:01:45 +02:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/download_playlist" />
|
2015-07-26 18:15:07 +02:00
|
|
|
</org.moire.ultrasonic.util.MyViewFlipper>
|
2013-04-09 08:01:45 +02:00
|
|
|
|
2013-05-16 09:59:55 +02:00
|
|
|
<include layout="@layout/media_buttons" />
|
|
|
|
|
2013-04-09 08:01:45 +02:00
|
|
|
<include layout="@layout/download_slider" />
|
|
|
|
|
|
|
|
<include layout="@layout/download_button_bar_flipper" />
|
|
|
|
|
|
|
|
</LinearLayout>
|