Updated copyright in source files
[pub/Android/ownCloud.git] / res / layout / popup.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 ownCloud Android client application
4
5 Copyright (C) 2012 Bartek Przybylski
6 Copyright (C) 2012-2013 ownCloud Inc.
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 -->
21 <RelativeLayout
22 xmlns:android="http://schemas.android.com/apk/res/android"
23 android:layout_width="wrap_content"
24 android:layout_height="wrap_content"
25 >
26
27 <ScrollView
28 android:id="@+id/scroller"
29 android:layout_marginTop="16dip"
30 android:layout_width="wrap_content"
31 android:layout_height="wrap_content"
32 android:background="@drawable/popup"
33 android:fadingEdgeLength="5dip"
34 android:scrollbars="none">
35
36 <LinearLayout
37 android:id="@+id/tracks"
38 android:orientation="vertical"
39 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
41 android:layout_weight="1"
42 android:padding="10dip"/>
43
44 </ScrollView >
45
46 <ImageView
47 android:id="@+id/arrow_up"
48 android:layout_width="wrap_content"
49 android:layout_height="wrap_content"
50 android:src="@drawable/arrow_up" />
51
52 <ImageView
53 android:id="@+id/arrow_down"
54 android:layout_width="wrap_content"
55 android:layout_height="wrap_content"
56 android:layout_marginTop="-4dip"
57 android:src="@drawable/arrow_down" android:layout_below="@+id/scroller"/>
58
59 </RelativeLayout>