blob: c2528023d0f8d9a5a77e30dff71a070aff6a1158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#fff"
tools:context=".LibreOfficeMainActivity">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/coordinator_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:elevation="3dp"
android:background="@color/toolbar_background"
app:theme="@style/LibreOfficeTheme.Toolbar"
tools:theme="@style/LibreOfficeTheme.Toolbar"
app:popupTheme="@style/LibreOfficeTheme" />
</android.support.design.widget.AppBarLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/calc_address"
android:layout_width="@dimen/calc_address_bar_width"
android:layout_height="@dimen/calc_toolbar_height"
android:layout_weight="0"
android:inputType="textNoSuggestions"
android:imeOptions="actionDone|actionGo"
android:visibility="gone"/>
<EditText
android:id="@+id/calc_formula"
android:layout_width="0dp"
android:layout_height="@dimen/calc_toolbar_height"
android:layout_weight="1"
android:inputType="text"
android:imeOptions="actionDone|actionGo"
android:visibility="gone"/>
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/calc_header_top_left"
android:layout_width="@dimen/calc_header_width"
android:layout_height="@dimen/calc_header_height"
android:visibility="gone"/>
<org.libreoffice.overlay.CalcHeadersView
android:id="@+id/calc_header_column"
android:layout_width="match_parent"
android:layout_height="@dimen/calc_header_height"
android:layout_toRightOf="@+id/calc_header_top_left"
android:layout_toEndOf="@+id/calc_header_top_left"
android:visibility="gone"/>
<org.libreoffice.overlay.CalcHeadersView
android:id="@+id/calc_header_row"
android:layout_width="@dimen/calc_header_width"
android:layout_height="match_parent"
android:layout_below="@+id/calc_header_top_left"
android:visibility="gone"/>
<RelativeLayout
android:id="@+id/gecko_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_toRightOf="@+id/calc_header_row"
android:layout_toEndOf="@+id/calc_header_row"
android:layout_below="@+id/calc_header_column">
<org.mozilla.gecko.gfx.LayerView
android:id="@+id/layer_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<org.libreoffice.overlay.DocumentOverlayView
android:id="@+id/text_cursor_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</RelativeLayout>
</RelativeLayout>
</LinearLayout>
<include layout="@layout/toolbar_bottom"/>
<include android:id="@+id/toolbar_back_color_picker" layout="@layout/toolbar_color_picker"/>
<include android:id="@+id/toolbar_color_picker" layout="@layout/toolbar_color_picker"/>
<RelativeLayout
android:id="@+id/loadingPanel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#9333"
android:gravity="center">
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"/>
</RelativeLayout>
<!--What's the use of this view? Can it be removed?-->
<View
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.design.widget.CoordinatorLayout>
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#9FFF"
android:choiceMode="singleChoice"/>
</android.support.v4.widget.DrawerLayout>
|