futokb/java/res/values/themes.xml
Aleksandras Kostarevas e0ddb4462c Move the test text field to a separate activity and process
Fixes some jank exhibited by the fact that the keyboard and the EditText are running in the same process
2024-05-26 16:43:20 +03:00

10 lines
449 B
XML

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.TextEditPopup" parent="Theme.AppCompat.DayNight.Dialog">
<item name="windowNoTitle">true</item>
<item name="android:windowBackground">@null</item>
<item name="android:windowCloseOnTouchOutside">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">true</item>
</style>
</resources>