diff options
| author | Po Lu | 2023-03-01 14:31:57 +0800 |
|---|---|---|
| committer | Po Lu | 2023-03-01 14:31:57 +0800 |
| commit | 194b3f948cba9f6da0e5d3b36ada8ab9ca74d482 (patch) | |
| tree | d9e2666749814376edfcd1f1f1e6818f597a5dc6 /java/res/values | |
| parent | 15bcb446be2f2f5b85a1b9585ec3abaabcbf04d9 (diff) | |
| download | emacs-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.xml | 25 |
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 | |||
| 3 | Copyright (C) 2023 Free Software Foundation, Inc. | ||
| 4 | |||
| 5 | This file is part of GNU Emacs. | ||
| 6 | |||
| 7 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 8 | it under the terms of the GNU General Public License as published by | ||
| 9 | the Free Software Foundation, either version 3 of the License, or | ||
| 10 | (at your option) any later version. | ||
| 11 | |||
| 12 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 15 | GNU General Public License for more details. | ||
| 16 | |||
| 17 | You should have received a copy of the GNU General Public License | ||
| 18 | along 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> | ||