diff options
| author | Po Lu | 2025-03-03 21:57:05 +0800 |
|---|---|---|
| committer | Po Lu | 2025-03-03 21:59:41 +0800 |
| commit | 96d26b493618f59bbdd4de86be65e784735541c8 (patch) | |
| tree | eb1cc7d32aeea967c3676fb8a86b95b8866098f5 /java/res/values-v35 | |
| parent | f372508f68c9797f8d17cce0293526f3f30cb4c4 (diff) | |
| download | emacs-96d26b493618f59bbdd4de86be65e784735541c8.tar.gz emacs-96d26b493618f59bbdd4de86be65e784735541c8.zip | |
Fix styling issues on Android 15 QPR1
* java/org/gnu/emacs/EmacsView.java (EmacsView): Guarantee that
frame views are created with the correct theme.
* java/res/values-v20/style.xml (EmacsStyle):
* java/res/values-v29/style.xml (EmacsStyle): Disable a swiping
gesture enabled on certain Android systems.
* java/res/values-v35/style.xml: Rename from `styles'.xml.
Diffstat (limited to 'java/res/values-v35')
| -rw-r--r-- | java/res/values-v35/style.xml (renamed from java/res/values-v35/styles.xml) | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/res/values-v35/styles.xml b/java/res/values-v35/style.xml index c0dc6479e18..0f7aeea5081 100644 --- a/java/res/values-v35/styles.xml +++ b/java/res/values-v35/style.xml | |||
| @@ -24,6 +24,9 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. --> | |||
| 24 | <item name="android:windowActionBar">false</item> | 24 | <item name="android:windowActionBar">false</item> |
| 25 | <item name="android:windowNoTitle">true</item> | 25 | <item name="android:windowNoTitle">true</item> |
| 26 | <item name="android:windowLightStatusBar">?android:attr/isLightTheme</item> | 26 | <item name="android:windowLightStatusBar">?android:attr/isLightTheme</item> |
| 27 | <!-- Suppress the swipe-to-dismiss gesture enabled on certain | ||
| 28 | systems. --> | ||
| 29 | <item name="android:windowSwipeToDismiss">false</item> | ||
| 27 | </style> | 30 | </style> |
| 28 | <style name="EmacsStyleOpen" | 31 | <style name="EmacsStyleOpen" |
| 29 | parent="@android:style/Theme.DeviceDefault.DayNight"/> | 32 | parent="@android:style/Theme.DeviceDefault.DayNight"/> |