zoukankan      html  css  js  c++  java
  • (2)几个使用技巧

    原文地址:https://developer.mozilla.org/en-US/Firefox_OS/Firefox_OS_usage_tips/

    远程调试

      打开Settings>Device Information>More Information >Developer,然后在这个列表中选中Remote Debugging。最终,通过USB把设备链接到电脑。


    截屏

      以下是三种Firefox OS截屏方法,如果你是Android开发者,会发现它们的步骤非常相似。

    准备好你的手机

      在手机上,开打Settings > Device Information > More Information > Developer,选中"Remote Debugging" 和"Console Enabled"。将手机链接到电脑。现在你有三种选择来截屏:终端截屏、Eclipse的DDMS和手机上的组合按钮。

    终端

      打开一个终端窗口。

    1. 截取一张命名为”screenshot.png“的图片。 adb shell screencap -p /sdcard/screenshot.png
    2. 把图片传输到电脑。 adb pull /sdcard/screenshot.png
    3. 删除设备上的截屏。 adb shell rm /sdcard/screenshot.png

      另一种方法。

    1. 确认你的电脑已安装了ffmpeg。
    2. 通过USB把手机连接到电脑。
    3. 操作手机到你想要截取的屏幕。
    4. cd到B2G/gaia目录。
    5. make screenshot
    6. 现在你有了一个名为”screenshot.png“的截图。

    DDMS

      打开Eclipse。

    1. 打开DDMS。 Window > Open Perspective > Other > DDMS
    2. 在左边的面板上,点击”Screen capture“按钮。
    3. 在新出现的窗口中点击保存按钮。

    手机组合键

    1. 同时按住”Home“和”Power“键几秒,该截屏就会保存在手机相册中。
    2. 把SD卡上的截屏复制到电脑上。
  • 相关阅读:
    几数之和的题目
    File类
    递归
    Collections
    Map集合
    泛型
    类型通配符
    可变参数
    异常
    Collection集合
  • 原文地址:https://www.cnblogs.com/xue2b/p/3532207.html
Copyright © 2011-2022 走看看