Fixed. App crash when setting a path without slash
[pub/Android/ownCloud.git] / res / layout / log_send_file.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical"
6 android:padding="10dp"
7 android:paddingLeft="8dp"
8 android:paddingRight="8dp"
9 android:weightSum="1" >
10
11 <ScrollView
12 android:id="@+id/scrollView1"
13 android:layout_width="match_parent"
14 android:layout_height="0dp"
15 android:layout_marginBottom="15dp"
16 android:layout_weight="1" >
17
18 <LinearLayout
19 android:layout_width="match_parent"
20 android:layout_height="wrap_content"
21 android:orientation="vertical" >
22
23 <TextView
24 android:id="@+id/logTV"
25 android:layout_width="match_parent"
26 android:layout_height="match_parent"
27 android:text="@string/empty" />
28 </LinearLayout>
29 </ScrollView>
30
31 <Button
32 android:id="@+id/deleteLogHistoryButton"
33 android:layout_width="match_parent"
34 android:layout_height="50dp"
35 android:text="@string/prefs_log_delete_history_button" />
36
37 <Button
38 android:id="@+id/sendLogHistoryButton"
39 android:layout_width="match_parent"
40 android:layout_height="50dp"
41 android:text="@string/log_send_history_button" />
42
43 </LinearLayout>