保存或打印屏幕截图说明

发布于 2025-01-06 17:21:28 字数 39 浏览 0 评论 0原文

如何保存应用程序屏幕截图或搜索wifi打印机并打印应用程序屏幕?

How to save screenshot of the application screen or search for a wifi printer and print the application screen?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

一片旧的回忆 2025-01-13 17:21:29

对于屏幕截图,请使用以下代码,

myView.setDrawingCacheEnabled(true);
Bitmap myScreenshot = myView.getDrawingCache();

现在您可以使用文件 API 将此图像保存在 SD 卡上,或者如果您想将其发送到 WiFi 打印机,则需要与 WiFi 打印机连接,然后将位图图像发送到打印机进行打印。

For Screenshot use following code,

myView.setDrawingCacheEnabled(true);
Bitmap myScreenshot = myView.getDrawingCache();

Now you can save this image on SD card with File API or if you want to send it to WiFi Printer then you need to do Connection with WiFi Printer and then send Bitmap Image to Printer for printing.

汹涌人海 2025-01-13 17:21:28

要保存屏幕截图:

View view=mTextView.getRootView(); /*mTextView is a textview on my screen. Instead you can take any of your views(imageview, textview or even button)*/
view.setDrawingCacheEnabled(true);
Bitmap bmp=view.getDrawingCache();

现在,将位图保存到文件中以保存它。

编辑:
不知你问的不是程序化方式吗?如果您正在寻找手动方式,Raj 的答案可能会对您有所帮助。

To save the screen shot:

View view=mTextView.getRootView(); /*mTextView is a textview on my screen. Instead you can take any of your views(imageview, textview or even button)*/
view.setDrawingCacheEnabled(true);
Bitmap bmp=view.getDrawingCache();

Now, you save bitmap to a file to save it.

EDIT:
I wonder if you are not asking about programmatic way? If you are looking for manual way, Raj's answer may help you.

牵你手 2025-01-13 17:21:28

以下步骤将有助于保存屏幕截图。

  1. 在模拟器设备中运行应用程序。

  2. 在 Eclipse 中打开设备选项并选择您正在运行该应用程序的相应设备。

  3. 选择您的应用在设备中对应的包。

  4. 点击屏幕截图按钮进行屏幕截图。

  5. 单击“保存”按钮保存屏幕截图。

Following steps will help for saving screen shot.

  1. Run App in the emulator device.

  2. open device option in the eclipse and select corresponding device which your are running the app.

  3. select corresponding package of your app in the device.

  4. click on screen capture button to take screen shot.

  5. click on the save button to save the screen shot.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文