blob: 28c8376059084db96b59d47413b64c4e5b276a17 [file] [log] [blame]
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -05001<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 xmlns:tools="http://schemas.android.com/tools"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical" >
6
7 <LinearLayout
8 android:layout_width="match_parent"
9 android:layout_height="wrap_content"
10 android:orientation="horizontal" >
11
12 <Button
13 android:id="@+id/button_alphabetically"
14 android:layout_width="0dp"
Alexandre Lision8ad39592013-11-21 13:23:58 -050015 android:layout_height="match_parent"
16 android:layout_margin="5dp"
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -050017 android:layout_weight="1"
Alexandre Lision8ad39592013-11-21 13:23:58 -050018 android:background="@drawable/item_generic_selector"
19 android:text="Alphabetically"
20 android:textSize="12sp" />
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -050021
22 <Button
23 android:id="@+id/button_lastDateModified"
24 android:layout_width="0dp"
Alexandre Lision8ad39592013-11-21 13:23:58 -050025 android:layout_height="match_parent"
26 android:layout_margin="5dp"
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -050027 android:layout_weight="1"
Alexandre Lision8ad39592013-11-21 13:23:58 -050028 android:background="@drawable/item_generic_selector"
29 android:text="Last Modified"
30 android:textSize="12sp" />
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -050031 </LinearLayout>
32
33 <TextView
34 android:id="@+id/path"
Alexandre Lision8ad39592013-11-21 13:23:58 -050035 android:layout_width="match_parent"
36 android:layout_height="wrap_content"
37 android:gravity="center"
38 android:textSize="12sp" />
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -050039
40 <ListView
41 android:id="@android:id/list"
42 android:layout_width="fill_parent"
43 android:layout_height="wrap_content" />
44
Alexandre Lisiondd5d8de2013-11-18 16:26:14 -050045</LinearLayout>