aboutsummaryrefslogtreecommitdiffstats
path: root/java/res/values
diff options
context:
space:
mode:
authorPo Lu2023-03-01 14:31:57 +0800
committerPo Lu2023-03-01 14:31:57 +0800
commit194b3f948cba9f6da0e5d3b36ada8ab9ca74d482 (patch)
treed9e2666749814376edfcd1f1f1e6818f597a5dc6 /java/res/values
parent15bcb446be2f2f5b85a1b9585ec3abaabcbf04d9 (diff)
downloademacs-194b3f948cba9f6da0e5d3b36ada8ab9ca74d482.tar.gz
emacs-194b3f948cba9f6da0e5d3b36ada8ab9ca74d482.zip
Update Android port
* java/AndroidManifest.xml.in: Specify @style/EmacsStyle. * java/org/gnu/emacs/EmacsActivity.java (onCreate): Stop setting the theme here. * java/res/values-v11/style.xml: * java/res/values-v14/style.xml: * java/res/values-v29/style.xml: * java/res/values/style.xml: Extract style resources into res/values.
Diffstat (limited to 'java/res/values')
-rw-r--r--java/res/values/style.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/java/res/values/style.xml b/java/res/values/style.xml
new file mode 100644
index 00000000000..396b7d8da39
--- /dev/null
+++ b/java/res/values/style.xml
@@ -0,0 +1,25 @@
1<!-- Style resources for GNU Emacs on Android.
2
3Copyright (C) 2023 Free Software Foundation, Inc.
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. -->
19
20<resources>
21 <!-- Style used for popup menus and relatives on Android 2.2 and
22 2.3. Styles used for newer Android versions are defined in
23 the res/values- directories for their respective API levels. -->
24 <style name="EmacsStyle" parent="@android:style/Theme.NoTitleBar"/>
25</resources>