Capture screenshot with mobile image in Android - android

I have developed an application and need to have the screenshots of the application. I am able to achieve this using the devices/capture screenshot in Eclipse. But, this gives the contents inside the screen. I want the screen shot with the mobile background where i can publish or use it for website. Is there a way to achieve this?

Are you looking for the Device Art Generator?

Some custom ROMs like CyanogenMod have a built-in screen capture 'plug-in' which you can access.
Have you take a look at this already?

Related

How do I disable screen mirroring for Flutter app?

I'm working on a new flutter app and the client wants to detect screen mirroring and disable it, Is there is a way to do so in Flutter using a third party package or something?
I've tried using the FLAG_SECURE in android but it disables only screenshots not screen mirroring.
There is no out of the box package for flutter. And there is also no effective way to disable mirroring for Android and iOS.
What you can do on Android is to use the DisplayManager to get all current logical displays with the method getDisplays. Then you can maybe show a pop up if the number of displays is to big for your app, in order to inform the user.
For iOS I don't think there is something available to stop or at least detect screen mirroring.
for android side we can use
int CanMirror = Settings.Secure.getInt(this.getContentResolver(), Settings.Global.DEVELOPMENT_SETTINGS_ENABLED , 0);
you can get better idea :https://stackoverflow.com/a/63971764/18340828
and ios side dont have much idea.

Mirror screen from a device to another

I am developing an app to achieve the functionality for Screen Casting from one android device to another android device.
I am developing an app which would be functional like teamviewer i.e. cast other user screen and also want to implement the functionality which identify the screen tap from the destination screen which reflect the action to host screen.
I am using below example's link for implementing the functionality. But not able to achieve the solution for screencast.
https://github.com/mmuszkow/ScreenMirroring
https://github.com/farmerbb/SecondScreen
https://github.com/JonesChi/CastScreen
https://integrate.teamviewer.com/en/develop/screen-sharing-sdk/android-tutorial/
Any help will deeply appreciated.
You can not do this Mamta. Not possible in this life.

How to create a Android screenshot with smartphone around

How can I create a Android screenshot from the smartphone itself and place a smartphone around like you can see it on this page: http://hskampus.de/?
You can make a screenshot by pressing volume down and power button at the same time.
Then you can use the Android Device Art Generator to generate the device around it.
Take a screenshot of the android screen, and then edit it into the smartphone picture, add some effect and you're done.

take device snapshot programmatically in android

How can I take snapshot of device like this tablet has button in menu bar to take a snap shot of device screen?
the device has android 4.1.1
this same functionality is wanted to implement in my application to capture the screen snapshot.
note that:
I don't want to use Layout.getDrawingCache();
I only want to access this method as the OS uses.or a solution like this
I do not need to root device.so please do not provide root solutions
just have a look on this https://code.google.com/p/android-screenshot-library/
i hope it usefull for you...

Can an app take a screenshot while running in the background?

Is it possible to programmatically take a screenshot of the screen while in a different app by some kind of a gesture in android? I want my app to run in background and when the user makes a particular gesture, I want my app(running in background to take a screen shot to be sent somewhere). I also want this gesture to recognize nearby devices that has my app to be able to get the screen shot for manipulation. I am still learning android, and I am planning this as my project. Just wanted to know if this is possible.
Yes it is possible
check, there are many app on google play for this.
Screenshot Ultimate and Screenshot UX Trial

Categories

Resources