ultrasonic-app-subsonic-and.../res/layout/download_button_bar_flipper...

68 lines
2.6 KiB
XML
Raw Normal View History

2012-02-26 21:25:13 +01:00
<?xml version="1.0" encoding="utf-8"?>
<net.sourceforge.subsonic.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"/>
</net.sourceforge.subsonic.androidapp.util.MyViewFlipper>