summaryrefslogtreecommitdiffstats
path: root/res/layout/bottom_action_bar.xml
blob: a55295b520e4ed61f6490ac07184be592e4b4afe (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="utf-8"?>
<!--
  Copyright (C) 2012 Andrew Neal
 
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
       http://www.apache.org/licenses/LICENSE-2.0
 
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<com.cyngn.eleven.widgets.theme.BottomActionBar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res/com.cyngn.eleven"
    android:id="@+id/bottom_action_bar_parent"
    android:layout_width="match_parent"
    android:layout_height="@dimen/bottom_action_bar_height"
    android:layout_gravity="bottom"
    tools:ignore="ContentDescription" >

    <include
        android:id="@+id/colorstrip"
        layout="@layout/colorstrip" />

    <LinearLayout
        android:id="@+id/bottom_action_bar"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/colorstrip"
        android:clickable="true"
        android:orientation="horizontal" >

        <com.cyngn.eleven.widgets.SquareImageView
            android:id="@+id/bottom_action_bar_album_art"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="left|center"
            android:background="@drawable/default_artwork" />

        <RelativeLayout
            android:id="@+id/bottom_action_bar_info_container"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_weight="1"
            android:paddingLeft="@dimen/bottom_action_bar_info_padding_left" >

            <com.cyngn.eleven.widgets.theme.ThemeableTextView
                android:id="@+id/bottom_action_bar_line_one"
                style="@style/BottomActionBarLineOne"
                app:themeResource="bab_line_one" />

            <com.cyngn.eleven.widgets.theme.ThemeableTextView
                android:id="@+id/bottom_action_bar_line_two"
                style="@style/BottomActionBarLineTwo"
                android:layout_below="@+id/bottom_action_bar_line_one"
                app:themeResource="bab_line_two" />
        </RelativeLayout>

        <HorizontalScrollView
            android:layout_width="@dimen/bottom_action_bar_button_container_width"
            android:layout_height="match_parent"
            android:scrollbars="none" >

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

                <com.cyngn.eleven.widgets.RepeatingImageButton
                    android:id="@+id/action_button_previous"
                    style="@style/BottomActionBarItem.Previous" />

                <com.cyngn.eleven.widgets.PlayPauseButton
                    android:id="@+id/action_button_play"
                    style="@style/BottomActionBarItem.Play" />

                <com.cyngn.eleven.widgets.RepeatingImageButton
                    android:id="@+id/action_button_next"
                    style="@style/BottomActionBarItem.Next" />

                <com.cyngn.eleven.widgets.ShuffleButton
                    android:id="@+id/action_button_shuffle"
                    style="@style/BottomActionBarItem.Shuffle" />

                <com.cyngn.eleven.widgets.RepeatButton
                    android:id="@+id/action_button_repeat"
                    style="@style/BottomActionBarItem.Repeat" />
            </LinearLayout>
        </HorizontalScrollView>
    </LinearLayout>

</com.cyngn.eleven.widgets.theme.BottomActionBar>