Fixed
Status Update
Comments
vi...@google.com <vi...@google.com>
ti...@gmail.com <ti...@gmail.com> #2
Which app are you using? Please share its Play Store link. Also mention the steps to be followed for reproducing the issue with the given app.
Can you share a bug report, after reproducing the issue ?
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Android bug report
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
NOTE: Please upload the files to Google Drive and share the folder to android-bugreport@google.com, then share the link here.
Can you share a bug report, after reproducing the issue ?
Frequency
How frequently does this issue occur? (e.g 100% of the time, 10% of the time)
Android bug report
After reproducing the issue, press the volume up, volume down, and power button simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach the bug report file to this issue.
Alternate method:
After reproducing the issue, navigate to developer settings, ensure ‘USB debugging’ is enabled, then enable ‘Bug report shortcut’. To take bug report, hold the power button and select the ‘Take bug report’ option.
NOTE: Please upload the files to Google Drive and share the folder to android-bugreport@google.com, then share the link here.
ap...@google.com <ap...@google.com> #3
With all due respect, I do not have additional data to share. I can only point you to one of many complaints already made regarding this issue:
*https://www.theverge.com/2018/7/25/17614014/vlc-blacklisting-recent-huawei-devices-negative-app-reviews
*https://twitter.com/videolan/status/1022354204025860097
*
*
Description
Component used: TV
Version used: compose_ui_version = '1.4.0-alpha03'/
1.4.0-alpha05
compose_tv_version:1.0.0-alpha03
Devices/Android versions reproduced on: Emulator, Nvidia SHIELD, Amazon AFTR.
In order to transfer focus from Android views to composables one needs to set the
AbstractComposeView
to befocusable
andfocusableInTouchMode
, and set aOnFocusChangeListener
in order to transfer focus to its Jetpack compose UI.source:https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:compose/ui/ui/integration-tests/ui-demos/src/main/java/androidx/compose/ui/demos/viewinterop/FocusTransferDemo.kt
If not doing so, first key event is ignored, so in order to transfer focus from an Android view to compose one would need to press twice on the remote (see https://issuetracker.google.com/issues/255903902 )
It would be nice to have the focus transfer automatically handled by
AndroidComposeView