Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / android / source / res / layout / calc_header_popup.xml
blob8e563af27d0a1fa0a1d4aa6fb944bd1cb345eec2
1 <?xml version="1.0" encoding="utf-8"?>
2 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3     android:orientation="vertical" android:layout_width="match_parent"
4     android:layout_height="match_parent"
5     android:background="@color/doorhanger_background_dark">
7     <LinearLayout
8         android:layout_width="match_parent"
9         android:layout_height="wrap_content"
10         android:orientation="vertical">
12         <LinearLayout
13             android:layout_width="match_parent"
14             android:layout_height="wrap_content">
16             <Button
17                 android:id="@+id/calc_header_popup_insert"
18                 android:layout_width="wrap_content"
19                 android:layout_height="wrap_content"
20                 style="?android:attr/buttonBarButtonStyle"
21                 android:text="@string/calc_insert_before"/>
23             <Button
24                 android:id="@+id/calc_header_popup_delete"
25                 android:layout_width="wrap_content"
26                 android:layout_height="wrap_content"
27                 style="?android:attr/buttonBarButtonStyle"
28                 android:text="@string/calc_delete"/>
30             <Button
31                 android:id="@+id/calc_header_popup_hide"
32                 android:layout_width="wrap_content"
33                 android:layout_height="wrap_content"
34                 style="?android:attr/buttonBarButtonStyle"
35                 android:text="@string/calc_hide"/>
37             <Button
38                 android:id="@+id/calc_header_popup_show"
39                 android:layout_width="wrap_content"
40                 android:layout_height="wrap_content"
41                 style="?android:attr/buttonBarButtonStyle"
42                 android:text="@string/calc_show"/>
44         </LinearLayout>
46         <LinearLayout
47             android:layout_width="match_parent"
48             android:layout_height="wrap_content">
50             <Button
51                 android:id="@+id/calc_header_popup_optimal_length"
52                 android:layout_width="wrap_content"
53                 android:layout_height="wrap_content"
54                 style="?android:attr/buttonBarButtonStyle"
55                 android:text="@string/calc_optimal_length"/>
57             <Button
58                 android:id="@+id/calc_header_popup_adjust_length"
59                 android:layout_width="wrap_content"
60                 android:layout_height="wrap_content"
61                 style="?android:attr/buttonBarButtonStyle"
62                 android:text="@string/calc_adjust_length"/>
64         </LinearLayout>
66         <LinearLayout
67             android:id="@+id/calc_header_popup_optimal_length_dialog"
68             android:layout_width="match_parent"
69             android:layout_height="wrap_content"
70             android:orientation="horizontal"
71             android:visibility="gone">
73             <EditText
74                 android:id="@+id/calc_header_popup_optimal_length_text"
75                 android:layout_width="wrap_content"
76                 android:layout_height="wrap_content"
77                 android:inputType="numberDecimal"
78                 android:hint="@string/calc_optimal_length_default_text"/>
80             <Button
81                 android:id="@+id/calc_header_popup_optimal_length_button"
82                 android:layout_width="wrap_content"
83                 android:layout_height="wrap_content"
84                 android:text = "@string/calc_optimal_length_confirm"/>
86         </LinearLayout>
88     </LinearLayout>
90 </ScrollView>