python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Jetpack Compose Keyboard adjustment
Is there a way where we can control for every screen different states of the keyboard, for example I have one screen where I want to adjust size of the keyboard to the screen and other screens where I...
Svilen Rusev
Votes: 0
Answers: 0
How to show keyboard with Jetpack Compose?
How can I slide in the keyboard?
I tried:
val keyboardController: SoftwareKeyboardController? = LocalSoftwareKeyboardController.current
keyboardController?.show()
But it does not work. What am I mi...
Ralf Wickum
Votes: 0
Answers: 6
bringToFront for Floating Window TYPE_APPLICATION_OVERLAY
I have created multiple Floating Windows using TYPE_APPLICATION_OVERLAY as below
WindowManager.LayoutParams params = new WindowManager.LayoutParams(
width,
height,
...
Akanksha Kapoor
Votes: 0
Answers: 0
Is Clearing WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS flag now unnecessary for setting status bar in android?
https://developer.android.com/reference/android/view/Window#setStatusBarColor(int)
Documentation above says that we need to clear WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS flag to set status ...
박찬준
Votes: 0
Answers: 0