Status Update
Comments
[Deleted User] <[Deleted User]> #3
Thank you for reporting this issue. For us to be able to investigate this issue it would be helpful if you could provide the following additional information:
Android build
Which Android build are you using? (e.g. OPP1.170223.012)
Device used
Which device did you use to reproduce this issue?
Steps to reproduce
What steps do others need to take in order to reproduce the issue themselves?
Provide Screen Record of the Issue for better understanding. Please show all necessary settings as well.
You can consider the apphttps://play.google.com/store/apps/details?id=org.neotech.app.tinycore&hl=en for issue demonstration
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
Expected output
What do you expect to occur?
Current output
What do you see instead?
Android bug report
After reproducing the issue, press the volume up, volume down, and power buttons simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach this 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.
Screen capture of the issue
Press the volume down and power buttons simultaneously. The image will appear in your gallery. Attach the screenshot file to this issue.
Android build
Which Android build are you using? (e.g. OPP1.170223.012)
Device used
Which device did you use to reproduce this issue?
Steps to reproduce
What steps do others need to take in order to reproduce the issue themselves?
Provide Screen Record of the Issue for better understanding. Please show all necessary settings as well.
You can consider the app
Please capture screen record or video of the issue using following steps:
adb shell screenrecord /sdcard/video.mp4
Subsequently use following command to pull the recorded file:
adb pull /sdcard/video.mp4
Attach the file to this issue.
Expected output
What do you expect to occur?
Current output
What do you see instead?
Android bug report
After reproducing the issue, press the volume up, volume down, and power buttons simultaneously. This will capture a bug report on your device in the “bug reports” directory. Attach this 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.
Screen capture of the issue
Press the volume down and power buttons simultaneously. The image will appear in your gallery. Attach the screenshot file to this issue.
ch...@beyls.net <ch...@beyls.net> #4
I am trying to reproduce it on Emulator with Android O Preview1 image, but blocked by another issue (https://code.google.com/p/android/issues/detail?id=260167 )
I'll bring more info when be able to run the app.
For now our complains based on official Preview1 docs
herehttps://developer.android.com/reference/android/view/WindowManager.LayoutParams.html#TYPE_APPLICATION_OVERLAY
and herehttps://developer.android.com/reference/android/view/WindowManager.LayoutParams.html#TYPE_SYSTEM_OVERLAY
I suppose it's better to make API change decision as early as possible before 'O' is released, so that is why i posted ticket even before i able to run the actual app.
I'll bring more info when be able to run the app.
For now our complains based on official Preview1 docs
here
and here
I suppose it's better to make API change decision as early as possible before 'O' is released, so that is why i posted ticket even before i able to run the actual app.
yb...@google.com <yb...@google.com> #5
componentid:190923 status:open
yb...@google.com <yb...@google.com> #6
Here is additional info:
Android build
Android O
OSR1.170321.002 3834619 test-keys
Device used
Android Emulator
sdk_gphone_x86-userdebug O
Steps to reproduce
Run Cool Tool app
Press 'Show Panel Button'
Try to move the panel with virtual joystick
See video in attach
Expected output
The overlay window should be placed on top of status bar
Current output
The app overlay window has been overlapped with status bar
Android build
Android O
OSR1.170321.002 3834619 test-keys
Device used
Android Emulator
sdk_gphone_x86-userdebug O
Steps to reproduce
Run Cool Tool app
Press 'Show Panel Button'
Try to move the panel with virtual joystick
See video in attach
Expected output
The overlay window should be placed on top of status bar
Current output
The app overlay window has been overlapped with status bar
Description
Version used: 1.0.0.aplha1
Devices/Android versions reproduced on: All
I am using new android ORM Room. And I faced with issue. ORDER BY with arguments not works. If I want to use the field from parameter for ORDER BY it is not work. Not sorded anything.
@Query("SELECT * FROM User ORDER BY :orderBY ASC")
List<User> sortedFind(String orderBY);
But, when I put the directly which field to sort then it is works as expected.
@Query("SELECT * FROM User ORDER BY name ASC")
List<User> sortedFind();