Fixed local path NULL when making favourite a file not down ; fixed change of local...
[pub/Android/ownCloud.git] / res / layout / extensions_available_dialog.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:id="@+id/extensions_avail"
4 android:layout_width="wrap_content" android:layout_height="wrap_content"
5 android:layout_gravity="center" android:orientation="vertical" >
6
7 <TextView
8 android:layout_width="wrap_content"
9 android:layout_height="wrap_content"
10 android:layout_margin="7dp"
11 android:text="@string/extensions_avail_message" />
12
13 <LinearLayout
14 android:layout_width="fill_parent"
15 android:layout_height="wrap_content"
16 android:layout_margin="5dp"
17 android:weightSum="1.0" >
18
19 <Button
20 android:id="@+id/buttonNo"
21 android:layout_width="fill_parent"
22 android:layout_height="wrap_content"
23 android:text="@string/common_no"
24 android:layout_weight="0.5"/>
25
26 <Button
27 android:id="@+id/buttonYes"
28 android:layout_width="fill_parent"
29 android:layout_height="wrap_content"
30 android:text="@string/common_yes"
31 android:layout_weight="0.5"/>
32
33 </LinearLayout>
34
35 </LinearLayout>