react / react/react-native

`TextInput` emits `onChange` event with invalid `selection` on Android browser autofill

未关闭
#57,458 1 条评论 3 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

Component: TextInput Needs: Triage :mag: Platform: Android
主要语言
C++
星标
127k
派生
25.3k
平均合并
1 天 23 小时
30 天内合并 PR
4

描述

Description

On Android, filling a TextInput via browser/system autofill emits an onChange event whose nativeEvent.selection is {start: 0, end: 0} instead of pointing to the end of the inserted text.

The text is correct, but the selection is wrong — the cursor is reported at the start of the field rather than after the autofilled value. The same input entered by pasting (from clipboard) reports the correct selection, and iOS reports the correct selection for both paste and autofill.

<TextInput
  autoComplete="tel"
  onChange={console.log}
/>
Expected vs. actual

iPhone 17 (iOS 26.5) — correct in both cases

✅ Paste +1 (555) 123-4567:

nativeEvent: {
  text: '+1 (555) 123-4567',
  selection: { start: 17, end: 17 }
}

✅ Browser autofill +1 (555) 123-4567:

nativeEvent: {
  text: '+1 (555) 123-4567',
  selection: { start: 17, end: 17 } 
}

Pixel 10 Pro XL (Android 17.0) — autofill is broken

✅ Paste +15551234567:

nativeEvent: {
  text: '+15551234567',
  selection: { start: 12, end: 12 }
}

❌ Browser autofill +15551234567:

nativeEvent: {
  text: '+15551234567',
  selection: { start: 0, end: 0 }
  //         ~~~~~~~~~~~~~~~~~~~~
}

On Android, autofill reports selection: { start: 0, end: 0 } while the text length is 12.

Steps to reproduce
  1. Clone https://github.com/nsbarsukov/react-native-android-autofill-bug
  2. Run npm ci
  3. Run npm start
  4. Focus the input and trigger the browser/system autofill suggestion for a phone number.
React Native Version

0.86.0

Affected Platforms

Runtime - Android

Output of npx @react-native-community/cli info
System:
  OS: macOS 26.4.1
  CPU: (8) arm64 Apple M2
  Memory: 166.00 MB / 8.00 GB
  Shell:
    version: "5.9"
    path: /bin/zsh
Binaries:
  Node:
    version: 26.4.0
    path: /Users/nsbarsukov/.nvm/versions/node/v26.4.0/bin/node
  Yarn: Not Found
  npm:
    version: 11.17.0
    path: /Users/nsbarsukov/.nvm/versions/node/v26.4.0/bin/npm
  Watchman:
    version: 2026.06.08.00
    path: /opt/homebrew/bin/watchman
Managers:
  CocoaPods: Not Found
SDKs:
  iOS SDK:
    Platforms:
      - DriverKit 25.5
      - iOS 26.5
      - macOS 26.5
      - tvOS 26.5
      - visionOS 26.5
      - watchOS 26.5
  Android SDK: Not Found
IDEs:
  Android Studio: 2026.1 AI-261.23567.138.2611.15646644
  Xcode:
    version: 26.6/17F113
    path: /usr/bin/xcodebuild
Languages:
  Java: Not Found
  Ruby:
    version: 2.6.10
    path: /usr/bin/ruby
npmPackages:
  "@react-native-community/cli": Not Found
  react:
    installed: 19.2.3
    wanted: 19.2.3
  react-native:
    installed: 0.86.0
    wanted: 0.86.0
  react-native-macos: Not Found
npmGlobalPackages:
  "*react-native*": Not Found
Android:
  hermesEnabled: Not found
  newArchEnabled: Not found
iOS:
  hermesEnabled: Not found
  newArchEnabled: Not found
Stacktrace or Logs
nativeEvent: {
  text: '+15551234567',
  selection: { start: 0, end: 0 }
}
MANDATORY Reproducer

https://github.com/nsbarsukov/react-native-android-autofill-bug

Screenshots and Videos

https://github.com/user-attachments/assets/866d4fd3-3852-4ca3-8408-7c0d1b4c17f8

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

调研方向

先使用 npm ci 和 npm start 运行强制复现步骤,然后重点关注 Android 浏览器/系统 autofill 的 TextInput onChange 事件路径。完成的标准是:autofill 的文本在插入值末尾报告一个选择区,同时粘贴输入和 iOS 行为保持不变。

由索引模型根据 Issue 内容生成。

评估

技术栈
android, react-native
领域
mobile
Issue 类型
缺陷
难度
4/5
预计耗时
3-5 天
活跃度
冷清
描述清晰度
基本清楚
新手友好度
48/100

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。