Merge branch 'zmatsuo-detailThumbnail' into develop
[pub/Android/ownCloud.git] / res / layout / file_actions.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout
3 xmlns:android="http://schemas.android.com/apk/res/android"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 android:layout_margin="@dimen/standard_margin"
7 android:orientation="vertical">
8
9 <TextView
10 android:id="@+id/file_actions_header"
11 android:layout_width="match_parent"
12 android:layout_height="wrap_content"
13 android:padding="@dimen/standard_padding"
14 android:textColor="@color/black"
15 android:visibility="gone"
16 />
17
18 <View
19 android:id="@+id/file_actions_header_divider"
20 android:layout_width="match_parent"
21 android:layout_height="2dp"
22 android:background="@color/owncloud_blue"
23 android:visibility="gone"
24 />
25
26 <ListView
27 android:id="@+id/file_actions_list"
28 android:layout_width="match_parent"
29 android:layout_height="0dp"
30 android:layout_weight="1"
31 />
32
33 </LinearLayout >