summaryrefslogtreecommitdiff
path: root/res/layout/external_player_fragment.xml
blob: f084ccac1cd40aedf0b9c56da043dd646eaa9ce3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/fragmentLayout"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical"
              android:visibility="gone">

    <View
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:background="@color/bright_blue"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <RelativeLayout
            android:id="@+id/layoutInfo"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="?attr/borderless_button">

            <ImageView
                android:id="@+id/imgvCover"
                android:contentDescription="@string/cover_label"
                android:layout_width="@dimen/external_player_height"
                android:layout_height="@dimen/external_player_height"
                android:layout_alignParentLeft="true"
                android:padding="4dp"
                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"
                android:ellipsize="end"
                android:maxLines="2"
                android:textSize="18sp"
                android:fontFamily="sans-serif-light"/>
        </RelativeLayout>

        <ImageButton
            android:id="@+id/butPlay"
            android:contentDescription="@string/pause_label"
            android:layout_width="@dimen/external_player_height"
            android:layout_height="@dimen/external_player_height"
            android:background="?attr/borderless_button"/>
    </LinearLayout>

</LinearLayout>