summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/external_player_fragment.xml
blob: f9608fafc11008036fba3a141c8de281f7fc71fa (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
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              android:id="@+id/fragmentLayout"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical"
              android:visibility="gone"
              android:background="?attr/colorPrimary"
              tools:visibility="visible"
              tools:background="@android:color/darker_gray">

    <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/selectableItemBackground">

            <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"
                tools:src="@drawable/ic_stat_antenna_default"
                tools:background="@android:color/holo_green_dark" />

            <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"
                tools:text="Playback item title"
                tools:background="@android:color/holo_green_dark"/>
        </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/selectableItemBackground"
            tools:src="@drawable/ic_play_arrow_white_36dp"
            tools:background="@android:color/holo_green_dark"/>
    </LinearLayout>

</LinearLayout>