Android Studio Keyboard Shortcut for full screen mode

In Android Studio -> MenuBar -> View -> Enter Full Screen Though there are other options as well which you might like such as Presentation Mode and Distraction free mode For maximizing the editor pane Ctrl + Shift+ F12 will work on windows. You Should also check this reference Full screen is not mapped to … Read more

How to show imageView full screen on imageView click?

You can use ImageView below two properties to show image based on your requirement : android:adjustViewBounds : Set this to true if you want the ImageView to adjust its bounds to preserve the aspect ratio of its drawable. android:scaleType :Controls how the image should be resized or moved to match the size of this ImageView … Read more

Android: making a fullscreen application

You are getting this problem because the activity you are trying to apply the android:theme=”@android:style/Theme.Holo.Light.NoActionBar.Fullscreen”> to is extending ActionBarActivity which requires the AppCompat theme to be applied. Extend your activity from Activity rather than from ActionBarActivity You might have to change your Java class accordingly little bit. If you want to remove status bar too … Read more

Android – Making activity full screen with status bar on top of it

I know that the guy asking the question may have found his own solution but for the people who are still looking for a solution this is a very simple solution but one thing it has a limitation till Kitkat so a condition is added if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { getWindow().setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); }