version bump
[pub/Android/ownCloud.git] / res / layout / popup.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout
3 xmlns:android="http://schemas.android.com/apk/res/android"
4 android:layout_width="wrap_content"
5 android:layout_height="wrap_content"
6 >
7
8 <ScrollView
9 android:id="@+id/scroller"
10 android:layout_marginTop="16dip"
11 android:layout_width="wrap_content"
12 android:layout_height="wrap_content"
13 android:background="@drawable/popup"
14 android:fadingEdgeLength="5dip"
15 android:scrollbars="none">
16
17 <LinearLayout
18 android:id="@+id/tracks"
19 android:orientation="vertical"
20 android:layout_width="wrap_content"
21 android:layout_height="wrap_content"
22 android:layout_weight="1"
23 android:padding="10dip"/>
24
25 </ScrollView >
26
27 <ImageView
28 android:id="@+id/arrow_up"
29 android:layout_width="wrap_content"
30 android:layout_height="wrap_content"
31 android:src="@drawable/arrow_up" />
32
33 <ImageView
34 android:id="@+id/arrow_down"
35 android:layout_width="wrap_content"
36 android:layout_height="wrap_content"
37 android:layout_marginTop="-4dip"
38 android:src="@drawable/arrow_down" android:layout_below="@+id/scroller"/>
39
40 </RelativeLayout>