2012-09-05 15:50:10 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-09-05 17:20:57 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-09-05 15:50:10 +02:00
|
|
|
android:id="@+id/fragmentLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-06 15:30:00 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone" >
|
2012-09-05 17:20:57 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
2012-09-10 13:02:08 +02:00
|
|
|
android:layout_height="1.5dp"
|
2012-09-05 17:20:57 +02:00
|
|
|
android:background="#AAAAAA" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2012-11-17 14:24:06 +01:00
|
|
|
android:layout_height="wrap_content" >
|
2012-09-05 17:20:57 +02:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/layoutInfo"
|
|
|
|
android:layout_width="0dp"
|
2012-09-05 15:50:10 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-09-05 17:20:57 +02:00
|
|
|
android:layout_weight="1"
|
2012-11-23 18:44:15 +01:00
|
|
|
android:background="?attr/borderless_button" >
|
2012-09-05 17:20:57 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/imgvCover"
|
|
|
|
android:layout_width="@dimen/external_player_height"
|
|
|
|
android:layout_height="@dimen/external_player_height"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:cropToPadding="true"
|
|
|
|
android:scaleType="fitXY" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_toRightOf="@id/imgvCover"
|
2012-09-10 13:02:08 +02:00
|
|
|
android:ellipsize="end"
|
2012-09-05 17:20:57 +02:00
|
|
|
android:maxLines="1"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvPosition"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/txtvTitle"
|
2012-09-10 13:02:08 +02:00
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_marginTop="4dp"
|
2012-09-05 17:20:57 +02:00
|
|
|
android:layout_toRightOf="@id/imgvCover"
|
2012-09-10 13:02:08 +02:00
|
|
|
android:maxLines="1"
|
2013-01-19 23:38:41 +01:00
|
|
|
android:textSize="@dimen/text_size_micro" />
|
2012-09-10 13:02:08 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvStatus"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@id/txtvTitle"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
android:layout_toRightOf="@id/txtvPosition"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2013-01-20 00:02:29 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2013-01-19 23:38:41 +01:00
|
|
|
android:textSize="@dimen/text_size_micro" />
|
2012-09-05 17:20:57 +02:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/butPlay"
|
|
|
|
android:layout_width="@dimen/external_player_height"
|
|
|
|
android:layout_height="@dimen/external_player_height"
|
2012-11-23 18:44:15 +01:00
|
|
|
android:background="?attr/borderless_button" />
|
2012-09-05 17:20:57 +02:00
|
|
|
</LinearLayout>
|
2012-09-05 15:50:10 +02:00
|
|
|
|
2012-09-05 17:20:57 +02:00
|
|
|
</LinearLayout>
|