Sample Header Ad - 728x90

Android Enthusiasts

Q&A for enthusiasts and power users of the Android operating system

Latest Questions

91 votes
8 answers
456687 views
Disable Screenshot Security
Some apps don't allow screenshots so how can I still take a screenshot? It is my phone and I should be able to do whatever I want with it so why is there even a feature to disallow screenshots? Android 5.0.1
Some apps don't allow screenshots so how can I still take a screenshot? It is my phone and I should be able to do whatever I want with it so why is there even a feature to disallow screenshots? Android 5.0.1
Pali (1021 rep)
Dec 31, 2015, 12:06 AM • Last activity: Jun 17, 2025, 09:18 AM
0 votes
0 answers
151 views
How to capture a screenshot that bypasses `LayoutParams.FLAG_SECURE`?
##### Rationale I want to capture a window-specific screenshot of `com.android.settings.Settings$DevelopmentSettingsDashboardActivity` > "SIM Status (sim slot $n)" (in order to augment my answer at [`revisions/260314/3`](https://android.stackexchange.com/revisions/260314/3#:~:text=18-,Method,-If%20u...
##### Rationale I want to capture a window-specific screenshot of com.android.settings.Settings$DevelopmentSettingsDashboardActivity > "SIM Status (sim slot $n)" (in order to augment my answer at [revisions/260314/3](https://android.stackexchange.com/revisions/260314/3#:~:text=18-,Method,-If%20using%20com.google.android.dialer%2C)) . ##### Problem However, not even using adb permits me, since [adb exec-out screencap -p > file.png](https://stackoverflow.com/revisions/31401447/5#:~:text=adb%20exec%2Dout%20screencap%20%2Dp%20%3E%20test.png) creates an empty file when on that activity due to it having LayoutParams.FLAG_SECURE set (per file): ~~~YAML $HOME/file.png: empty ~~~ To confirm that that flag is the culprit, a filled file is created when focused on an activity without LayoutParams.FLAG_SECURE set (per file): ~~~YAML $HOME/file.png: PNG image data, 1224 x 2700, 8-bit/color RGBA, non-interlaced ~~~ Consequently, how can I bypass this restriction? I don't care how low-level I have to go, insofar as I'm not forced to solder to a UART connector... ##### Tangential I'm not the sole person to want this, per [reddit.com/r/AndroidQuestions/comments/1fynmkc](https://www.reddit.com/r/AndroidQuestions/comments/1fynmkc/how_to_force_a_screenshot_even_in_an_app_that/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1#:~:text=melbournesummer-,How%20to%20force%20a%20screenshot%20even%20in%20an%20app%20that%20won 't%20allow%20it?,-Looking%20For%20Suggestions): > How to force a screenshot even in an app that won't allow it?
RokeJulianLockhart (556 rep)
Apr 26, 2025, 06:19 PM • Last activity: Apr 27, 2025, 05:18 PM
19 votes
3 answers
60968 views
Chrome 65 doesn't allow screenshots in Incognito mode
Seems that in Chrome for Android [version 65](https://blog.chromium.org/2018/02/chrome-65-beta-css-paint-api-and.html), a "feature" was introduced which doesn't allow you to take a screenshot in Incognito mode. When attempting to take a screenshot, Android will now show an alert saying "Taking scree...
Seems that in Chrome for Android [version 65](https://blog.chromium.org/2018/02/chrome-65-beta-css-paint-api-and.html) , a "feature" was introduced which doesn't allow you to take a screenshot in Incognito mode. When attempting to take a screenshot, Android will now show an alert saying "Taking screenshots isn't allowed by the app or your organization." /** * Sets the attributes flags to secure if there is an incognito tab visible. */ @VisibleForTesting void updateIncognitoState() { WindowManager.LayoutParams attributes = mWindow.getAttributes(); boolean currentSecureState = (attributes.flags & WindowManager.LayoutParams.FLAG_SECURE) == WindowManager.LayoutParams.FLAG_SECURE; boolean expectedSecureState = isShowingIncognito(); if (currentSecureState == expectedSecureState) return; if (expectedSecureState) { mWindow.addFlags(WindowManager.LayoutParams.FLAG_SECURE); } else { mWindow.clearFlags(WindowManager.LayoutParams.FLAG_SECURE); } } Source: [chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoTabSnapshotController.java](https://chromium.googlesource.com/chromium/src/+/8e084f697e8acfe1d1752dee702d8d73eb9655b0/chrome/android/java/src/org/chromium/chrome/browser/incognito/IncognitoTabSnapshotController.java) This is imposing rules you can expect to have in a enterprise environment on a personal phone. > The operation system UI should make clear when and how other apps are recording the screen. As an app developer, I should not be bothered with avoiding screen captures. Breaking this functionality breaks the lowest common denominator of data sharing: Taking a screenshot. One of the reason to make a screenshot is just because an application misses a proper data export functionality. Source: [HN Discussion](https://news.ycombinator.com/item?id=16572761) > Image Is there any way to disable or prevent this behavior?
Matija Grcic (349 rep)
Mar 12, 2018, 11:52 PM • Last activity: Apr 27, 2025, 03:08 PM
1 votes
1 answers
52 views
How to screenshot solely one, specific, application?
As [`revisions/251957/9`](https://android.stackexchange.com/revisions/251957/9#:~:text=via%20com.google.android.permissioncontroller/com.android.permissioncontroller.role.ui.DefaultAppListActivity's%20GUI:-,Screenshot,-Undermentioned%20is%20a) demonstrates, when I take a screenshot in (for example)...
As [revisions/251957/9](https://android.stackexchange.com/revisions/251957/9#:~:text=via%20com.google.android.permissioncontroller/com.android.permissioncontroller.role.ui.DefaultAppListActivity 's%20GUI:-,Screenshot,-Undermentioned%20is%20a) demonstrates, when I take a screenshot in (for example) com.google.android.permissioncontroller/com.android.permissioncontroller.role.ui.DefaultAppListActivity, [the OS's screenshot mechanism](https://stackoverflow.com/q/2661536/9731176) doesn't merely capture com.google.settings's GUI – it *also* captures com.android.shell's navigation and status bars at least: Screenshot However, this can also include overlays with TYPE_ACCESSIBILITY_OVERLAY set as the type in their WindowManager.LayoutParams. On that note, this matters more with ["Enable freeform windows" enabled](https://github.com/nikp123/scrcpy-desktop/blob/b287fe649a8845018a631bef9144ded7e6117208/startscreen.sh#L12C2-L13C57:~:text=adb%20shell%20settings%20put%20global,settings%20put%20global%20force_allow_on_external%201) , [\[1\]] because when I screenshot something, I don't want to always have to manually crop that screenshot to what I actually want saved (rather than all windows' visible content). As an example, KDE [Spectacle](https://invent.kde.org/graphics/spectacle/-/blob/4b49eb961c67d900e4b6c7d80633791eb61eab2a/README.md#spectacle---the-kde-screenshot-utility:~:text=Spectacle%20is%20a%20screenshot%20taking%20utility%20for%20the%20KDE%20desktop.) 6.3.2.1 – a desktop screenshotting application – provides a brilliant option to remediate this: Screenshot However, it isn't available for AOSP. Consequently, what're the alternatives? [\[1\]]: https://xdaforums.com/t/force-enable-desktop-mode-without-external-display-connected.4285777/#post-89997088:~:text=adb%20shell%20settings%20put%20global%20force_desktop_mode_on_external_displays%201&text=adb%20shell%20settings%20put%20global%20force_allow_on_external%201
RokeJulianLockhart (556 rep)
Mar 12, 2025, 03:08 PM • Last activity: Apr 26, 2025, 01:50 PM
3 votes
1 answers
1942 views
How can I take a screenshot of a specific portion of my screen?
There is no screenshot by area on my Samsung Galaxy Tab 8.9, running Android 3.1. Is there any other way to take a screenshot of only a portion of my screen rather than the whole area?
There is no screenshot by area on my Samsung Galaxy Tab 8.9, running Android 3.1. Is there any other way to take a screenshot of only a portion of my screen rather than the whole area?
Léo Léopold Hertz 준영 (1171 rep)
Jan 3, 2012, 12:17 PM • Last activity: Mar 13, 2025, 03:14 PM
2 votes
1 answers
602 views
How to mute or change the screenshot sound?
TCT (also called TCL) Alcatel 3T 10 (model 8088Q) Android 9 tablet makes a loud unpleasant sound when taking screenshots. On top of that, turning the DND or silent mode on doesn't mute the screenshot sound at all. Moreover, there are no settings available to change the sound of the screenshot or sim...
TCT (also called TCL) Alcatel 3T 10 (model 8088Q) Android 9 tablet makes a loud unpleasant sound when taking screenshots. On top of that, turning the DND or silent mode on doesn't mute the screenshot sound at all. Moreover, there are no settings available to change the sound of the screenshot or simply turn off or mute the screenshot sound. I contacted the brand, but they provided zero support. Just FYI, after a long time, I have been able to find the app [Mute Mode](https://play.google.com/store/apps/details?id=com.mggm.shiiitmode) in Google Play Store. This app has capability to mute all sounds of the tablet. It can also mute sounds of selected apps which is very helpful. So this app can successfully mute this unpleasant screenshot sound but only if I mute everything. There is no option to mute just the screenshot sound. So that's one drawback of this app. There is risk factor as well with this app. Suppose if I forget to turn off this app, then it will mute all alarms and notifications which is risky and impractical for daily stress-free usage. How to mute or change the screenshot sound?
Besykje (51 rep)
Jan 11, 2024, 06:06 PM • Last activity: Jan 7, 2025, 10:41 AM
-2 votes
1 answers
80 views
How to find screenshots from PC?
I'm looking for a screenshot, which I can see in Google Photos under *Device folders* -> *Screeshots*. But when I browse it from my PC (Windows 10), in *DCIM* folder I can only see *Camera* one (I read it should be *Screenshots* next to it). Why is that? Is it possible that I don't have permissions...
I'm looking for a screenshot, which I can see in Google Photos under *Device folders* -> *Screeshots*. But when I browse it from my PC (Windows 10), in *DCIM* folder I can only see *Camera* one (I read it should be *Screenshots* next to it). Why is that? Is it possible that I don't have permissions to see it?
Line (344 rep)
Aug 30, 2019, 12:25 PM • Last activity: Sep 26, 2024, 08:42 AM
1 votes
1 answers
926 views
How to allow an app to take screenshots automatically?
How can I allow an app to automatically take screenshot? I'm not talking about apps disabling screenshots on them, I can take screenshot of the thing manually, but I'd like to automate it. I use the app Automate, which has a screenshot action, but when I run it, a dialog appears asking me if I want...
How can I allow an app to automatically take screenshot? I'm not talking about apps disabling screenshots on them, I can take screenshot of the thing manually, but I'd like to automate it. I use the app Automate, which has a screenshot action, but when I run it, a dialog appears asking me if I want to allow the app to see everything what is on screen, and that happens every time. I basically want to autoapprove this dialog. Is there a way to do that? Thanks
M. Volf (121 rep)
May 9, 2019, 05:55 PM • Last activity: Mar 8, 2024, 04:08 PM
2 votes
0 answers
45 views
Is it possible to take a screenshot or audio/video recording of a Zoom meeting?
When being invited to join a Zoom meeting on an Android phone, is it possible to take a screenshot or audio/video recording of the meeting, using any other applications installed on the phone?
When being invited to join a Zoom meeting on an Android phone, is it possible to take a screenshot or audio/video recording of the meeting, using any other applications installed on the phone?
Tim (513 rep)
Nov 22, 2023, 12:46 PM
1 votes
0 answers
1533 views
Converting long-scrolling screenshot to PDF on Android without white background
Suppose I have a long-scrolling screenshot that I took with a phone, and when I convert it using those apps, it looks like the screenshot is just put on the regular-size white background page as you can see below. > [![][1th]][1] I know there are lots of Android apps that are able to convert images...
Suppose I have a long-scrolling screenshot that I took with a phone, and when I convert it using those apps, it looks like the screenshot is just put on the regular-size white background page as you can see below. > Image I know there are lots of Android apps that are able to convert images to PDF, but the problem is all of them, mostly, include a white background. I've tried the online version as well, but still the same. I know this is possible because I used an app called Xodo, it only converts the first image without background, but the page from 2 to the end has a white background around it. Do you know if there's an app that could do that or another way, so it's just the screenshot being the page, with no white background included?
user516076 (259 rep)
May 27, 2022, 01:03 AM • Last activity: Oct 13, 2023, 01:54 AM
1 votes
0 answers
625 views
How do I deny the DETECT_SCREEN_CAPTURE permission?
If an app requests the DETECT_SCREEN_CAPTURE permission ([new to Android 14][1]), how can I deny it that permission? I don't want the app to get a SecurityException or anything like that; I just want to make the screen capture callback never fire. Solutions that need ADB or root are acceptable. [1]:...
If an app requests the DETECT_SCREEN_CAPTURE permission (new to Android 14 ), how can I deny it that permission? I don't want the app to get a SecurityException or anything like that; I just want to make the screen capture callback never fire. Solutions that need ADB or root are acceptable.
Joseph Sible-Reinstate Monica (320 rep)
Oct 6, 2023, 04:32 AM
5 votes
2 answers
4259 views
Google Pixel 6 sceenshot function has been replaced by Google Assistant
I have used Android for years and for most Android phones, pressing power + Volume Down together takes a screenshot. I have used my Google Pixel 6 for 2 years now, and the screenshot function has always worked perfectly fine. Recently, an automatic update added the Google Assistant function to my ph...
I have used Android for years and for most Android phones, pressing power + Volume Down together takes a screenshot. I have used my Google Pixel 6 for 2 years now, and the screenshot function has always worked perfectly fine. Recently, an automatic update added the Google Assistant function to my phone. Now, when I press power + Volume Down, it no longer takes a screenshot but instead, the Google Assistant panel appears. Google Assistant is not available in my country, so unfortunately this panel cannot help me take a screenshot. I tried turning off Google Assistant, and changing the default Digital Assistant app, but all the combinations of options I tried do not bring back the screenshot function. Here are the settings that I tried: | Default digital assistant app | Google Assistant | What Happens when I press Power + Vol Down | |------------------------------------------------|------------------------|--------| | None | Off | Nothing | | Google Assistant | On | Google Assistant launches, but Google Assistant is not available in my country so nothing happens | Google Assistant | Off | A panel pops up that says Google Assistant is ready, and an Activate button | How do I get back the screenshot functionality?
My other car is a cadr (201 rep)
Sep 29, 2023, 06:16 AM • Last activity: Sep 29, 2023, 05:55 PM
1 votes
1 answers
317 views
Honor 8 : Is there a way of taking a screenshot without using the power button?
When I used to take a screenshot on a cell phone (Honor 8, not rooted, Android 8.0.0), I push the power button and the volume button together. But now the power button on a cell phone has stopped working (see https://android.stackexchange.com/questions/253364/how-to-fix-the-problem-of-power-button-s...
When I used to take a screenshot on a cell phone (Honor 8, not rooted, Android 8.0.0), I push the power button and the volume button together. But now the power button on a cell phone has stopped working (see https://android.stackexchange.com/questions/253364/how-to-fix-the-problem-of-power-button-stuck-a-bit-inside-and-not-working) . Is there a way of taking a screenshot without using the power button? Is there something similar to accessibility tools on an operating system (such as virtual keyboard in Ubuntu)? Thanks.
Tim (513 rep)
Sep 28, 2023, 11:53 AM • Last activity: Sep 29, 2023, 10:10 AM
2 votes
1 answers
4458 views
How to disable FLAG_SECURE by modifying an APK file?
I want to mod an APK so that its `FLAG_SECURE` can be disabled. Can anyone please guide me in doing that? I have used `apktool` to decompile the app, but I don't know which specific file to find in smali to disable this.
I want to mod an APK so that its FLAG_SECURE can be disabled. Can anyone please guide me in doing that? I have used apktool to decompile the app, but I don't know which specific file to find in smali to disable this.
Amogh Upadhyay (21 rep)
Dec 2, 2020, 12:38 PM • Last activity: Aug 16, 2023, 10:59 AM
1 votes
1 answers
50 views
"Letter 'A' with multiple lines" icon appears after taking a screenshot
I noticed an icon (seen on the attached image) on the Edit screen that appears after taking a screenshot on my Honor Android phone. [![][1]][2] Image resized. Click for full size I'm unsure of its functionality and couldn't find any information in the user manual or online resources. Is this icon a...
I noticed an icon (seen on the attached image) on the Edit screen that appears after taking a screenshot on my Honor Android phone. Image Image resized. Click for full size I'm unsure of its functionality and couldn't find any information in the user manual or online resources. Is this icon a feature of Android in general, or is it specific to Honor devices? Any insights would be helpful.
Vladan (111 rep)
Jul 22, 2023, 09:18 AM • Last activity: Jul 22, 2023, 10:37 AM
0 votes
3 answers
2708 views
How to take selected-area screenshot to clipboard once it's selected?
How to take a selected-area screenshot, so that it's copied to the clipboard automatically once it's selected? (exactly like [`Win+Shift+S`][1] on Windows, but I need it for Android) This will enable me to quickly —*saving tremendous time & pain (when I need to reuse this a lot)*— paste it within an...
How to take a selected-area screenshot, so that it's copied to the clipboard automatically once it's selected? (exactly like Win+Shift+S on Windows, but I need it for Android) This will enable me to quickly —*saving tremendous time & pain (when I need to reuse this a lot)*— paste it within any note-taking application (like Squid ). **Motive** I use *Squid* a lot in split-screen-view with a book reader app (like ezPDF ) and many times, I need to take selected-area-screenshot of a part from a book to drop it in my note paper in Squid where I'm taking notes. One way to do this is to use Samsung's Smart Select , then share the selected-area screenshot to Squid. This unfortunately forces opening Squid in full screen (which destroys the split-screen view, so I need to waste time again to set the split-screen view of the two apps). Also, in Squid, it forces creating a new separate useless note (not the one I'm working with, so I need to waste time again re-navigating to my original note after copying my captured selected-area screenshot to the clipboard and then deleting the useless note). This wastes a lot of time.
Omar (171 rep)
Dec 30, 2017, 12:39 AM • Last activity: Jul 21, 2023, 09:12 AM
1 votes
2 answers
3710 views
How to take screenshot using Power button only?
I find using Power + Vol - extremely cumbersome. Is it possible to change this to holding Power Button? I'm on Android 10.
I find using Power + Vol - extremely cumbersome. Is it possible to change this to holding Power Button? I'm on Android 10.
Emilio (121 rep)
Apr 30, 2023, 12:53 PM • Last activity: May 1, 2023, 03:32 PM
2 votes
1 answers
4589 views
Deleting hidden pictures
When I download my pictures from my Samsung Galaxy S3 onto my desktop, hundreds of screen shot pics download. These are those annoying pop ups that come up trying to get you to select the app to purchase. They are not in any picture folder in my phone - I only see them when I download all pictures....
When I download my pictures from my Samsung Galaxy S3 onto my desktop, hundreds of screen shot pics download. These are those annoying pop ups that come up trying to get you to select the app to purchase. They are not in any picture folder in my phone - I only see them when I download all pictures. How can I find them in my phone and delete them?
Nan Mullaney (21 rep)
Oct 14, 2014, 03:27 PM • Last activity: Dec 24, 2022, 02:06 PM
1 votes
0 answers
1918 views
How to disable the screenshot sound effect on Android 12 (and above)?
To my knowledge there's no such setting in AOSP, having combed through the system options in several major LineageOS (19 at the time) and CyanogenMod releases. The only method I know is to delete the related file (I've also wiped the entire folder contents) in `/system/product/media/audio/ui/` using...
To my knowledge there's no such setting in AOSP, having combed through the system options in several major LineageOS (19 at the time) and CyanogenMod releases. The only method I know is to delete the related file (I've also wiped the entire folder contents) in /system/product/media/audio/ui/ using root or alternative using the 'do not disturb mode' at all times. The stock camera app (e.g. com.android.camera2) may or may not have an option to turn off the shutter sound.
user598527 (798 rep)
Dec 6, 2022, 04:58 PM • Last activity: Dec 7, 2022, 03:09 AM
1 votes
1 answers
4379 views
How to disable sound during screenshot in Android 11 on Pixel 3?
I've already followed the [steps here][2] (although modified a bit, since I think that example wasn't using Android 11) to disable screenshot sound notifications: [![enter image description here][1]][1] But the setting seemed to have no effect. There is still a sound whenever I take a screenshot by...
I've already followed the steps here (although modified a bit, since I think that example wasn't using Android 11) to disable screenshot sound notifications: enter image description here But the setting seemed to have no effect. There is still a sound whenever I take a screenshot by holding the power button and the Volume Down button. How can I disable the sound?
Ryan (623 rep)
Nov 5, 2020, 01:36 AM • Last activity: Dec 7, 2022, 03:04 AM
Showing page 1 of 20 total questions