免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1301 | 回复: 0
打印 上一主题 下一主题

[Android] Android Tools [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-22 08:51 |只看该作者 |倒序浏览
  1. UI
    • layoutopt
      Ref:
      • http://developer.android.com/guide/developing/debugging/debugging-ui.html#layoutopt

      Optimize layout files, such as to check if there is useless element.
    • hierarchyviewer
      Ref:
      • http://developer.android.com/guide/developing/debugging/debugging-ui.html#HierarchyViewer

      View layout hierarchy of an application running on Emulator or devices running a developer version of the Android system.

      Simple usage:
      • To load view hierarchy, click button "Load View Hierarchy"
      • To view a single view object, double click the view in hierarchy
      • You can view the whole layout hierarchy, a single view, their object, and you can alse save hierarchy as PNG
    • draw9patch (create a NinePatch graphic)
      Ref: http://developer.android.com/guide/developing/tools/draw9patch.html
    • xxx
  2. Dev
    • android
      Ref: http://developer.android.com/guide/developing/tools/android.html

      Lets you:
      • Create, delete, and view Android Virtual Devices (AVDs).
      • Create and update Android projects.
      • Update your Android SDK with new platforms, add-ons, and documentation.


    • ProGuard
      Ref: http://developer.android.com/guide/developing/tools/proguard.html

      Used to shrink, optimize, and obfuscate source code.

    • zipalign
      Ref: http://developer.android.com/guide/developing/tools/zipalign.html

      zipalign is an archive alignment tool that provides important optimization to Android application (.apk) files.

      zipalign must only be performed after the .apk file has been signed with your private key. If you perform zipalign before signing, then the signing procedure will undo the alignment
    • apkbuilder
      To create apk file.
    • aapt (Android Asset Packaging Tool)
      Permissions, resources, configurations related APK file.
    • xxx
  3. Profiling
    Ref:
    • http://developer.android.com/guide/developing/debugging/debugging-tracing.html

    Objective: Profile application's performance, just like tool 'gprof' under Unix.

    Method:
    • DDMS
      • Click button 'Start Method Profiling'
      • Do some opearation to monitor target application
      • Click button 'Stop method Profiling', and wait for a while, then a window will pop up automatically to display results.
    • Debug Code
      // start tracing to "/sdcard/calc.trace"
      Debug.startMethodTracing("calc");
      // ...
      // stop tracingDebug.stopMethodTracing();

      And then uses one of the following tools to view resule
      • traceview
      • dmtracedump
    • hprof-conv
      Ref: http://developer.android.com/guide/developing/tools/hprof-conv.html

      Convert the HPROF file that is generated by the Android SDK tools to a standard format so you can view the file in a profiling tool of your choice.
    • xxx
  4. Test & Debug
    • adb (Android Debug Bridge)
      Ref: http://developer.android.com/guide/developing/tools/adb.html

      adb is a versatile command line tool that lets you communicate with an emulator instance or connected Android-powered device:
      • Start/Stop server
      • Shell command (adb shell <cmd>)
        1. monkey
          Ref: http://developer.android.com/guide/developing/tools/monkey.html

          Generate pseudo-random streams of user events such as clicks, touches, or gestures, as well as a number of system-level events.

          You can use the Monkey to stress-test applications that you are developing, in a random yet repeatable manner.

        2. dumpsys (Dump system data to the screen)
        3. dumpstate (Dump state to a file)
        4. dmesg (Dump kernel message)
        5. bmgr (Interact with the Backup Manager on devices)
          You can:
          • Backup application's data
          • Restore data
          • Wipe application's data
        6. sqlite3
          Ref: http://developer.android.com/guide/developing/tools/adb.html#sqlite

          To manage SQLite databases created by Android applications.
        7. xxx
      • Query for Emulator/Device Instances
      • Install/Uninstall an Application
      • Push/Pull file/dir
      • Debug
        1. logcat (Manage log messages)
          Ref: http://developer.android.com/guide/developing/tools/logcat.html

        2. bugreport
      • xxx
    • ddms
    • mksdcard
      Create a FAT32 disk image that you can load in the emulator.
    • mulator
      Ref: http://developer.android.com/guide/developing/tools/emulator.html

      • Options of 'emulator'
      • Hot keys of enumator, such as BACK, CTRL+F11 etc

    • dmtracedump (Generate graphical call-stack diagrams from trace log files)
      Ref: http://developer.android.com/guide/developing/tools/dmtracedump.html
    • monkeyrunner
      Ref: http://developer.android.com/guide/developing/tools/monkeyrunner_concepts.html

      The monkeyrunner tool is not related to the UI/Application Exerciser Monkey (also known as the monkey).

      The monkeyrunner tool provides an API for writing programs that control an Android device or emulator from outside of Android code. Such as to write a Python program that installs an Android application or test package, runs it, sends keystrokes to it, takes screenshots of its user interface, and stores screenshots on the workstation.
    • xxx
  5. xxx
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP