Status Update
Comments
dm...@gmail.com <dm...@gmail.com> #2
Hi - thanks for raising this, I'll dig into our SwipeDismissableNavHost and try to find out why we didn't support the back button already. Will report back on this thread.
al...@google.com <al...@google.com>
se...@google.com <se...@google.com> #3
An early draft of SwipeDismissableNavHost did implement back button support, but it was thought not to be required - we will submit a change to add the support back again.
se...@google.com <se...@google.com> #4
Project: platform/frameworks/support
Branch: androidx-main
commit 78d498661680a95d2705d5e6dbb1c0438c50fa30
Author: stevebower <stevebower@google.com>
Date: Tue Dec 14 13:42:48 2021
Support back button in SwipeDismissableNavHost.
Added back button handling for navigation to
SwipeDismissableNavHost, using the implementation
from Compose Material NavHost. This enables use
of the emulator's back button for local testing,
as well as in any devices that support a hardware back button.
Test: Run tests for wear.compose.navigation.
Bug: 210205624
Relnote: "We have added a back button handler to
SwipeDismissableNavHost, so that pressing
back navigates to the previous level
in the navigation hierarchy."
Change-Id: I5b08689b1651c1aae5f038f058956007df398909
M wear/compose/compose-navigation/build.gradle
M wear/compose/compose-navigation/src/androidTest/kotlin/androidx/wear/compose/navigation/SwipeDismissableNavHostTest.kt
M wear/compose/compose-navigation/src/main/java/androidx/wear/compose/navigation/SwipeDismissableNavHost.kt
https://android-review.googlesource.com/1922537
Branch: androidx-main
commit 78d498661680a95d2705d5e6dbb1c0438c50fa30
Author: stevebower <stevebower@google.com>
Date: Tue Dec 14 13:42:48 2021
Support back button in SwipeDismissableNavHost.
Added back button handling for navigation to
SwipeDismissableNavHost, using the implementation
from Compose Material NavHost. This enables use
of the emulator's back button for local testing,
as well as in any devices that support a hardware back button.
Test: Run tests for wear.compose.navigation.
Bug: 210205624
Relnote: "We have added a back button handler to
SwipeDismissableNavHost, so that pressing
back navigates to the previous level
in the navigation hierarchy."
Change-Id: I5b08689b1651c1aae5f038f058956007df398909
M wear/compose/compose-navigation/build.gradle
M wear/compose/compose-navigation/src/androidTest/kotlin/androidx/wear/compose/navigation/SwipeDismissableNavHostTest.kt
M wear/compose/compose-navigation/src/main/java/androidx/wear/compose/navigation/SwipeDismissableNavHost.kt
dm...@gmail.com <dm...@gmail.com> #5
Thanks) glad I helped
ap...@google.com <ap...@google.com> #6
Project: platform/frameworks/support
Branch: androidx-main
commit b19124e0241b9d63352714c6bc7dbfbcab962058
Author: Sean McQuillan <seanmcq@google.com>
Date: Tue Jul 13 13:59:33 2021
Retain android:digits in AppCompatEditText
Previously, digits specified with android:digits were replaced with
[0,1,2,3,4,5,6,7,8,9] during the emoji initalizer.
This bug was introduced in appcompat 1.4.0-alpha03.
Relnote: "Correctly retain android:digits in AppCompatEditText, this
fixes bug 193047889 introduced in appcompat 1.4.0-alpha03."
Test: New test, and manual testing
Bug: b/193047889
Change-Id: I4b4fc1ccc429724743cab8a965d7e3adec356fd1
M appcompat/appcompat/src/androidTest/java/androidx/appcompat/widget/AppCompatEditTextEmojiTest.java
M appcompat/appcompat/src/androidTest/res/layout/appcompat_edittext_emoji_activity.xml
M appcompat/appcompat/src/main/java/androidx/appcompat/widget/AppCompatEmojiEditTextHelper.java
https://android-review.googlesource.com/1765245
Branch: androidx-main
commit b19124e0241b9d63352714c6bc7dbfbcab962058
Author: Sean McQuillan <seanmcq@google.com>
Date: Tue Jul 13 13:59:33 2021
Retain android:digits in AppCompatEditText
Previously, digits specified with android:digits were replaced with
[0,1,2,3,4,5,6,7,8,9] during the emoji initalizer.
This bug was introduced in appcompat 1.4.0-alpha03.
Relnote: "Correctly retain android:digits in AppCompatEditText, this
fixes
Test: New test, and manual testing
Bug:
Change-Id: I4b4fc1ccc429724743cab8a965d7e3adec356fd1
M appcompat/appcompat/src/androidTest/java/androidx/appcompat/widget/AppCompatEditTextEmojiTest.java
M appcompat/appcompat/src/androidTest/res/layout/appcompat_edittext_emoji_activity.xml
M appcompat/appcompat/src/main/java/androidx/appcompat/widget/AppCompatEmojiEditTextHelper.java
se...@google.com <se...@google.com>
si...@gmail.com <si...@gmail.com> #7
Issue still persists in appcompat 1.4.0 and it works fine when I reverted the version to 1.3.1. Tested in the following devices:
Phones : Redmi 7a(Android 10), Poco F1(Android 10) and Samsung Galaxy A71(Android 11)
Emulators : Nexus 5X API 30
Phones : Redmi 7a(Android 10), Poco F1(Android 10) and Samsung Galaxy A71(Android 11)
Emulators : Nexus 5X API 30
mi...@gmail.com <mi...@gmail.com> #8
This issue is still present in appcompat:1.4.0 any solution?
Description
Version used: 1.4.0-alpha03
Devices/Android versions reproduced on: Pixel 3a XL
I use code below to display EditText in which user can type IP-address
Upon further tests I discovered that android:inputType ignores android:digits
<EditText
...
android:inputType="number"
android:digits="01234"
...
/>
For all previous releases (including 1.4.0-alpha02 and below) I got numeric keyboard, which allowed me to enter only 1, 2, 3, or 4.
In release 1.4.0-alpha03 I can type any number (0-9)