We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Original thread: #3947
Environment
Describe the bug
C:\android\scrcpy\scrcpy-noconsole.vbs -S --always-on-top --stay-awake --no-audio
Here's a sample app to simulate this, which changes the orientation after 5 seconds since shown.
My Application.zip app-debug.zip
Code:
class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) Handler(mainLooper).postDelayed({ requestedOrientation = if (resources.configuration.orientation == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE else ActivityInfo.SCREEN_ORIENTATION_PORTRAIT }, 5000L) } }
The bug is that ScrCpy steals the focus because of it, as you can see here:
2023-04-25_00-42-13_1.zip
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Original thread:
#3947
Environment
Windows
2.1
ZIP
Pixel 6
13
Describe the bug
Here's a sample app to simulate this, which changes the orientation after 5 seconds since shown.
My Application.zip
app-debug.zip
Code:
The bug is that ScrCpy steals the focus because of it, as you can see here:
2023-04-25_00-42-13_1.mp4
2023-04-25_00-42-13_1.zip
The text was updated successfully, but these errors were encountered: