python-for-android icon indicating copy to clipboard operation
python-for-android copied to clipboard

Error in deleting characters in a text field

Open Neizvestnyj opened this issue 3 years ago • 0 comments

To delete characters after defocusing the text field, you need to press the delete button as many times as the: number of characters * 2

Versions

  • Python: 3.9.9
  • OS: Android
  • Kivy: master
  • Cython: latest
  • OpenJDK: 17
  • p4a: develop
from kivy.app import App
from kivy.lang import Builder


kv = """
Screen:
    TextInput:
        size_hint_y: None
        height: dp(45)
        hint_text: "1"
        write_tab: False
        pos_hint: {"top": 0.9}

    TextInput:
        size_hint_y: None
        height: dp(45)
        hint_text: "2"
        write_tab: False
        pos_hint: {"top": 0.7}
"""


class Test(App):
    def build(self):
        return Builder.load_string(kv)


Test().run()

buildozer.spec

[app]

title = My Application

package.name = myapp

package.domain = org.test

source.dir = .

source.include_exts = py,png,jpg,kv,atlas

version = 0.1

requirements = kivy==master

orientation = all

osx.python_version = 3

osx.kivy_version = 2.1.0

fullscreen = 0

android.api = 33

android.minapi = 21

android.ndk = 25b

android.accept_sdk_license = True

android.enable_androidx = True

android.logcat_filters = *:S python:D

android.archs = arm64-v8a, armeabi-v7a

android.allow_backup = True

p4a.branch = develop

p4a.bootstrap = sdl2

[buildozer]

log_level = 2

warn_on_root = 1

https://user-images.githubusercontent.com/40869738/211171901-9a0d5a2d-2b11-4c29-99aa-7d420ba73907.mp4

Neizvestnyj avatar Jan 07 '23 22:01 Neizvestnyj