2013-04-06 21:47:24 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<com.thejoshwa.ultrasonic.androidapp.util.MyViewFlipper
|
|
|
|
xmlns:a="http://schemas.android.com/apk/res/android"
|
|
|
|
a:id="@+id/download_button_bar_flipper"
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:background="@android:color/black">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:background="@android:color/black"
|
|
|
|
a:paddingLeft="8dip"
|
|
|
|
a:paddingRight="8dip">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/download_position"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_alignParentLeft="true"
|
|
|
|
a:layout_alignParentTop="true"
|
|
|
|
a:layout_marginRight="6dip"
|
|
|
|
a:text="0:00"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
a:textColor="@color/mediaControlForeground"/>
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/download_duration"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_alignParentRight="true"
|
|
|
|
a:layout_alignParentTop="true"
|
|
|
|
a:layout_marginLeft="6dip"
|
|
|
|
a:text="-:--"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
a:textColor="@color/mediaControlForeground"/>
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/download_artist"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_toRightOf="@+id/download_position"
|
|
|
|
a:layout_toLeftOf="@+id/download_duration"
|
|
|
|
a:layout_centerHorizontal="true"
|
|
|
|
a:layout_alignParentTop="true"
|
|
|
|
a:singleLine="true"
|
|
|
|
a:ellipsize="end"
|
|
|
|
a:gravity="center_horizontal"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
a:textColor="#c0c0c0"/>
|
|
|
|
<TextView
|
|
|
|
a:id="@+id/download_album"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_centerHorizontal="true"
|
|
|
|
a:layout_below="@+id/download_artist"
|
|
|
|
a:singleLine="true"
|
|
|
|
a:ellipsize="end"
|
|
|
|
a:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
a:textColor="#c0c0c0"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/button_bar"/>
|
|
|
|
|
|
|
|
</com.thejoshwa.ultrasonic.androidapp.util.MyViewFlipper>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|