Top "Android-windowmanager" questions

The Android WindowManager is a system service, which is responsible for managing the z-ordered list of windows, which windows are visible, and how they are laid out on screen.

Android webview fit all content to screen

Hi I have a webview and I want it to fit to screen, such that the user does not have …

android android-webview android-windowmanager
Detect Lock Screen Incorrect Password by user in Android

I am building a security app and I need to know if the user is giving incorrect password . Suppose user …

android android-service android-broadcast android-windowmanager screen-lock
Getting window display from service android

I am trying to display a window from service but don't getting it how to do this Here is my …

android android-service android-view android-windowmanager
Keeping track of View added to WindowManager (no findViewById() function?)

In my service I add a view to WindowManager with addView(). When I'm ready to hide the view, I call …

android view android-windowmanager
Cannot remove a view attached by windowManager.addView()

I'm trying to remove a layer added to WindowManager. But nothing happens when I call removeView(). Does anybody know how …

android android-layout android-view android-windowmanager
How I can set keep screen on and full screen flag?

fullscreen in my app and I write this code : public void onCreate(Bundle savedInstanceState) { requestWindowFeature(Window.FEATURE_NO_TITLE); setRequestedOrientation(…

android layoutparams android-screen android-windowmanager
Display DialogFragment content below status bar

Im trying to display an DialogFragment with match_parent both for height and width but it happens that on top …

android android-dialogfragment android-dialog android-windowmanager android-window
What does this 4 line java code means in android application?

In my java application i have this code @Override public void onAttachedToWindow() { this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG); …

java android android-emulator android-windowmanager
Android: Overlay TextView on LockScreen

Im trying to overlay a TextView on top of the LockScreen (Similar to how Android Overlays the time). Note: I …

android textview overlay android-windowmanager